Hacker News new | ask | show | jobs
by nullcipher 1080 days ago
> Yes, just not at the same time.

Does this mean that my processes need some synchronization primitive of their own to not to concurrent writes?

1 comments

Afaik SQLite in WAL mode takes your writes but still serializes the commits, so no SQLite-specific synchronization primitives needed. You might run into SQLITE_BUSY, in which case you can play with the timeout https://www.sqlite.org/c3ref/busy_timeout.html