realm-kotlin icon indicating copy to clipboard operation
realm-kotlin copied to clipboard

Kotlin Multiplatform and Android SDK for the Realm Mobile Database: Build Better Apps Faster.

Results 329 realm-kotlin issues
Sort by recently updated
recently updated
newest added

This PR adds some benchmark measurements on opening and closing a Realm with generated classes. Closes https://github.com/realm/realm-kotlin/issues/1521

cla: yes
no-changelog

### How frequently does the bug occur? Always ### Description With this Realm entities: ``` class EntityRm( @PrimaryKey var id: String, var optionalCars: RealmList? = realmListOf(), ): RealmObject { constructor()...

O-Community
T-Bug
Frequency:Always
Repro:Always
SDK-Use:Local
Encryption:Off

### How frequently does the bug occur? Always ### Description I'm developing a jetbrains compose desktop application for raspberry pi. When testing on Debian ARM64 , the application always crashes...

O-Community
Frequency:Always
Repro:Always
Encryption:Off

Add some tests around what is the behavior when downgrading an App metadata schema version. Bumping the metadata schema version by modifying it and then opening it with an App.

Hey, any chance to get Kotlin JS support? Would be nice in combination with jetbrains compose web. Thanks for considering!

O-Community

Currently, we use the `VersionTracker` to close realms whose `RealmReference`s that have been claimed by the GC. This has two effects: first versions will not be reclaimed until there is...

Opening a Realm currently does quite a lot of things that we know can be "slow", especially around schema parsing. We should benchmark how this scales to see if there...

There are a number of places where realm has specific constraints on what can be imported. These constraints could also be enforced in unmanaged entities to give rapid feedback then...

There are redudant/mutually exclusive options in our object-generating operators taking `issueDynamicObject` and `issueDynamicMutableObject` arguments. We could probably collapse this into an enum ``` enum class ObjectType { STATIC, DYNAMIC, DYNAMIC_MUTABLE,...