Replies: 1 comment 1 reply
-
You could benefit from reading this: #406 |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The reason i choose for
.iterate()
over.all()
is simply cause i could stream result set from disk to lets say http response without caching the response in the server memory and bloating it..Some of non scientific tests that i have done are pointing that
.iterate()
method is caching some results into memory if not all, question is can we have an option to not cache any results in process memory and stream the results from the disks?, another connected question is what happens to read concurrency when such a iterate method is active, ideally it should go down unless i am missing something ..A new bee to sqlite so please answer accordingly..
Beta Was this translation helpful? Give feedback.
All reactions