Realm.open vs new Realm
In the context of a React Native app, using Realm locally only (so no realm object server for now). What is the difference between opening a realm using Realm.open({schema: [Car, Person]}) and creating a new Realm instance with new Realm({schema: [Car, Person]}); When should I use one or the other? Looks like Realm.open is just a callback to make sure the syncronisation is done, so only needed for synced Realms? So far this is what I found: Realm.open: According to the doc reference Realm.open means "Open a Realm asynchronously with a promise. If the Realm is synced, it will be fully