objectbox-java
objectbox-java copied to clipboard
Android Database - first and fast, lightweight on-device vector database
Code example probably will be best description here. ```kotlin @Entity class KAEntry( @Unique val key: String, val value: String, @Id var id: Long = 0 ) class MyApp : Application()...
**Description** I use ObjectBox as a database in a Java Desktop App. My build tool is gradle and I add ObjectBox dependencies manually without dedicated plugin. Code fragment I use...
Is there any roadmap or consideration to keep old data while doing type-migration? **Describe the solution you'd like** Would be nice to keep old data while doing type-migration. Say `@Entity`...
Currently, when you operate on a ToMany, an add or remove loads all entities. Alternatively we should also have means to modify to-many relations without loading everything to avoid bloating...
**Describe the solution you'd like** It would be good if we developer can set limit for maximum number of rows that can be saved in database so that if entries...
After opening the DB browser, it shows 50 rows on each page of the DB with 1000's of rows. When I press on a column name, it sorts the rows...
In my Pre-launch report details I see continuously crashes on Android 8.1 phones. I cannot reproduce it on a Emulator with SDK 27. Stacktrace error (see for log details below):...
we want to use the data in multi process, but i dont know whether this can use ?
It would be nice if `QueryBuilder` would allow to test for emptiness without having to resort to using `filter()`. This would be especially useful with many-to-many relations if one could...
I have a user who I've diagnosed to have object-box-related issues. I can send him debug builds with the ObjectBox debug flags (debugFlags(), debugRelations(), etc...) turned on. However, I would...