Replies: 1 comment
-
Is the main goal for that performance, or are there additional benefits? I've found that in most cases, the overhead of cross-isolate communication is much more than the overhead of SQLite parsing a query, so it won't have a major benefit for the asynchronous calls. That said, there may be some cases with particularly large queries where it does make a difference. Right now, for the cases where performance is critical, I'd recommend using |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
First of all, thanks for the excellent package!
I finally don't have to start every project by
db.execute("PRAGMA journal_mode=WAL;")
.Anyways, I very often seem to use the following pattern with sqlite3:
I wonder if this could be done via sqlite_async
Beta Was this translation helpful? Give feedback.
All reactions