Hacker News new | ask | show | jobs
by d3nj4l 1387 days ago
... you can get tons of requests on a server?
2 comments

Redis has the same limitation (only one transaction at a time) and is used a lot for webapps. It solves this by requiring full transactions up front. The ideal case for sqlite for performance is to have only a single process/thread directly interacting with the database and having other process/threads send messages to and from the database process.
But that isn't "locally"?