objectbox-java
objectbox-java copied to clipboard
Android Database - first and fast, lightweight on-device vector database
When the target entity of a ToOne relationship is changed after it's resolved and cached, there is no way to force the target to refresh from the database. **Describe the...
I know that there are some tickets around, but honestly, its quite annoying to not have this key feature of a database implemented. I saw, that there were some efforts...
:rotating_light: First, please check: - existing issues, - Docs https://docs.objectbox.io/ - Troubleshooting page https://docs.objectbox.io/troubleshooting - FAQ page https://docs.objectbox.io/faq **Describe the bug** A clear and concise description in English of what...
How could I fix this crash? When I build many of BoxStore, about 60 or more, it always crash Caused by: io.objectbox.exception.DbException: Could not open database environment; please check options...
``` 2021-06-03 12:02:12.448 28996-29081/com.xxx.test A/libc: Fatal signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 0x1f in tid 29081 (IoThreadPool-3), pid 28996 (mlive.soulmatch) 2021-06-03 12:02:12.557 30112-30112/? A/DEBUG: *** *** *** ***...
**Describe the bug** io.objectbox.exception.DbException Not a database file (-30793) **Basic info (please complete the following information):** - ObjectBox version : [2.8.1] - Reproducibility: [occasionally without visible pattern] - Device: [series]...
I came across the DataObservers today and noticed, that when you call `subscribe` on a `Query`, you will end in a `List` as result which in my opinion is not...
Allow an data (and optionally the data model) to be exported and imported. This would simplify packaging an initial dataset with an app. Possible implementations: json.gz, binary.gz, raw dump. **Update:**...
Trying to add same name variable in `Entity` which is already defined in parent class annotated by `BaseEntity`. ``` @Entity public class Child extends Parent { @Id(assignable = true) public...