|
|
|
|
|
by dragontamer
1761 days ago
|
|
You don't even need to reach two nodes before SQLite becomes grossly inadequate. Even on a single node: SQLite's paradigm of global locks leads to poor performance when multiple threads write to the same table. You could be a single-node 4-core $5/month VPS instance and run into this issue. SQLite requires "exclusive" access to a table to handle writes (meaning when writing, no other thread can be reading the table). Especially if your transactions start to become complex. In contrast, MySQL and PostgreSQL allow for simultaneous reads while writes are occurring. |
|