objectbox-java
objectbox-java copied to clipboard
Android Database - first and fast, lightweight on-device vector database
`@Unique` currently supports `FAIL` and `REPLACE` that are compatible with Sync. Proposal to add more options (**that likely will not work with Sync**): `@Unique(onConflict=IGNORE)`: ignore the offending object (no changes...
**Note: it is already possible to use `@Convert` and your encryption implementation to encrypt single properties. See [an example below](https://github.com/objectbox/objectbox-java/issues/8#issuecomment-535430630).** --- Allow configuring the proprietary serialization format to include a...
I have a project with a app and multi modules(app, domain, data). I created an Application in module-app, init objectbox in the module app application, for regenerate the database from...
Any plans to support Java Platform Module System (JPMS)? Currently I get errors on a [minimal gradle kotlin jpms example](https://github.com/Burtan/KotlinGradleJPMS) and I couldn't find any documentation on jpms with objectbox....
Note: There is a [helpful Stack Overflow response about this](https://stackoverflow.com/a/76641776/9187282). --- is there any way that i can use objectbox in kotlin native module and share the bussiness logics in...
**Describe the bug** When querying a collection you get the error: `State condition failed in table:60` The problem occurs when the paging limit is greater than 1. When the paging...
Currently ObjectBox supports using KAPT for processing annotations in Kotlin. KSP is a new Kotlin annotation processing framework by Google and supported by Jetbrains that processes annotations in a far...
您好,我期望自定义类型 能更好的支持二进制,提高速度,是否可以参考 https://github.com/twitter/Serial 这样更方便的将字段是自定义模型 更快插入和读取 Translation: Hello, I hope that the custom type can better support binary and improve the speed. Can you refer to https://github.com/twitter/Serial This makes it more...
**Describe the bug** Despite explicit setting different parameter value subsequent query executions return same result sometimes (if made quickly enough, or maybe two different parameter values have same hash?) **Basic...