objectbox-java
objectbox-java copied to clipboard
Android Database - first and fast, lightweight on-device vector database
Currently, every time someone builds a Gradle project, the plugin will look for the entities and recreate the model JSON file if needed. My suggestion is to add an option...
Thanks for the wonderful library. When is objectbox sync going to be released? I signed up for early access a while back and have received no updates so far.
Did not find any info on that, so decided to ask here - is there (or planned) an option to shrink (e.g. compact the database)? We're using objectbox for quite...
Does ObjectBox have the equivalent of the SQL LIKE keyword? If it does not, I would like to add that as a feature request. This was my solution for the...
``` @Entity public class Note { @Id public long id; public String title; public ToMany tags; } @Entity public class Tag { @Id public long id; public String description; public...
On queries, you can use string array "overloads" for `in` in the following ways: `QueryBuilder in(Property property, String[] values)` `QueryBuilder in(Property property, String[] values, StringOrder order)` The same "overloads" are...
UniqueViolationException currently in the instances created by objectbox itself in the error message is the id that conflicts with the document we want to insert, I wonder if it is...
I am aware that according to your documentation, @BaseEntity not allowed on a superclass from a library. I was hoping this is on the dev roadmap? Please advise. Thanks!
The "Date" property is outdated with Java 8 Time API, it would be nice to have Instant instead.
**Describe the bug** In android Application to build boxStore to occurred th problem. ```kotlin private var boxStore: BoxStore? = null fun initBox(context: Context) { boxStore = MyObjectBox.builder() .androidContext(context.applicationContext).build() if (BuildConfig.DEBUG)...