Markus Junginger

Results 318 comments of Markus Junginger

Likely you have not reached "a certain point". If you carefully read the [FAQ](https://docs.objectbox.io/faq#how-does-objectbox-use-disk-space-and-can-i-reclaim-disk-space), you will find some reasons as for why. E.g. how big transactions are have a influence....

I understand that in your case a DB shrink would save a huge amount disk space. I just want to point out that this is very specific to whatever you...

It's quite easy to trick the Kotlin non-nullable types, e.g. with JSON parsers. Same is true for ObjectBox. We will target those kind of oddities in a future version. For...

Maybe an annotation for defining "defaults" for null values? E.g. @DefaultForNull("") var bar: String = ""

My first assessment is that we should keep default values separate from queries. E.g. if you want to, you can query for null values.

@pratikbutani The default of booleans is false. Are you saying you experienced something else?

While it's something we'd like to do, our small team is currently focused on different tasks. Community volunteers could do this using [ObjectBox C API](https://github.com/objectbox/objectbox-c); we'd definitely be supportive.

Yes, let's leave that open at least for reference and tracking user interest (give a :+1: at the top).

Please show the query and tell if you are using any indexes for the query conditions. A reason for the query getting faster is that data gets cached from disk...