I have multiple processes writing to sqlite db simultaneously using this library: https://github.com/dyedgreen/deno-sqlite
I tried setting PRAGMA busy_timeout = 30000
but that didn't fix my problem.
I have one long running process that queries db sequentially in a loop and if I run that, the whole app freezes and users can no longer read from db.
I read something about creating an sqlite_busy_handler. Does anyone know how to solve this issue?