Uwe (ObjectBox)
Uwe (ObjectBox)
Thanks! Maybe we should also consider setting the maximum size to 64 (but at least number of processors) by default. (It's the default parallelism number for Kotlin's IO scheduler.)
@mstyura Oh sorry, I didn't mean for you to implement this. With "we" I meant the ObjectBox team. But thanks for the investigation!
Thanks for reporting! I can confirm. But actually this does not work as of version `3.1.1`, version `3.1.0` is not affected. This is likely related to the change away from...
Thanks for the request! Please thumbs up the first post, if you are interested in this. Note: there is also an issue for the Java library: https://github.com/objectbox/objectbox-java/issues/497
Thanks! However, I don't think it's a good idea to have workarounds explicitly for other libraries. So not sure about this (also, would this even work if no freezed files...
@awaik Thanks for answering! [My comment](https://github.com/objectbox/objectbox-dart/issues/414#issuecomment-1115767645) also applies here: if you ever find out if this is because something ObjectBox can improve, let us know!
The freezed author [commented that](https://github.com/rrousselGit/freezed/pull/752#issuecomment-1239220444) > If you want to make a code generator that runs after Freezed, you can do that inside your own build.yaml instead of Frrezed's >...
Looks like you [double-posted on Stack Overflow](https://stackoverflow.com/questions/73936502/objectbox-store-watch-not-returning-lastest-inserted-data) (it would be nice if you could avoid that, saves us time), so also sharing here: Maybe try to use a query limit...
Thanks for the additional details! I just wrote a quick test adding a version property, also using a custom getter/setter. ```dart // dbVersion property @Transient() DateTime version = DateTime.now(); int...
Thanks! At this point when using `ConflictStrategy.replace` with relations your code needs to take care of updating relations. Or maybe find a way to not having to use `ConflictStrategy.replace` in...