You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
In your write test for Realm you should delete ´´´realm.copyToRealm(o)´´´ to avoid doubling the object. You already created the object with ´´´createObject()´´´. That should make a big difference with Realms write speed :-)
PS: You are comparing with an in-memory representation. Seems a bit odd since all the DB's are persisting to disk. But if you just want to compare without disk overhead, you can also run Realm in-memory.
The text was updated successfully, but these errors were encountered:
Hi,
In your write test for Realm you should delete ´´´realm.copyToRealm(o)´´´ to avoid doubling the object. You already created the object with ´´´createObject()´´´. That should make a big difference with Realms write speed :-)
PS: You are comparing with an in-memory representation. Seems a bit odd since all the DB's are persisting to disk. But if you just want to compare without disk overhead, you can also run Realm in-memory.
The text was updated successfully, but these errors were encountered: