SQLite's handling of concurrency is not very good. Things crawl to a halt when trying to read and write at the same time, e.g. when trying to read feeds as the update thread kicks in. A database with multi-version concurrency control like PostgreSQL would do a much better job.
SQLite's handling of concurrency is not very good. Things crawl to a halt when trying to read and write at the same time, e.g. when trying to read feeds as the update thread kicks in. A database with multi-version concurrency control like PostgreSQL would do a much better job.