realm-kotlin
realm-kotlin copied to clipboard
Kotlin Multiplatform and Android SDK for the Realm Mobile Database: Build Better Apps Faster.
I was experience about the slow startup time by opening Realm Kotlin instance. The more schema classes is added to the RealmConfiguration, the more is slow start. I experience that...
Current result of `MutableRealm.query` will return a `RealmQuery` that reevaluates and updates according to changes done during the `write`. This is difficult to reason about and can make iteration of...
This method is generally unsafe when working with data from Realm as it assume strings are zero-terminated, which is not the case for Realm data. See e.g. https://medium.com/@vanniktech/writing-your-first-ktlint-rule-5a1707f4ca5b Instead we...
Follow the pattern of managed/unmanaged used for lists by using delegates. An oversimplified API would look like this: ``` interface RealmSet : MutableSet internal class UnmanagedRealmSet: RealmSet, MutableSet by mutableSetOf()...
The multiplatform library is being developed here: https://github.com/mongodb/kbson
In order to bring down build times on CI we need to add support for building and testing the library in parallel. Some first steps seems to be: - [...
RealmSingleQuery might emit objects that no longer fulfill the query conditions. This can happen due to the way we operate on the underlying streams. It can only happen if you...
It seems to have gone flakier and even with a timeout of 2 minutes, fails to sync data which points to a more severe problem that needs to be investigated....
There are situations, like during a discard local client reset, that we like to copy managed or outdated objects into a Realm. Right now the solution is to manually copy...