Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ObjectBox optimizations #1

Open
greenrobot-team opened this issue May 22, 2023 · 0 comments
Open

ObjectBox optimizations #1

greenrobot-team opened this issue May 22, 2023 · 0 comments

Comments

@greenrobot-team
Copy link

Thanks for the work on this benchmark! I noticed the rather poor performance of ObjectBox on the tested iOS and Android devices and wanted to point out some things:

Test 4 + 5 call findAsync in a loop. Yet for other tests (including isar tests), operations are wrapped in a transaction. I suspect this could explain the poor performance on iOS + Android as the overhead of spawning an isolate is probably higher.

Test 16: similar thing here, multiple removeAllAsync calls are run (each one spawning an isolate) instead of using an async transaction like for the other tests (and isar).

I guess the take away for ObjectBox is that we need to improve our API docs on when to use an async transaction instead of calling the async variants of box operations multiple times (or even in a loop).

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant