How to Setup Replicated Highly Available SQLite with rqlite
If you need a highly available database configuration where the loss of one node doesn't result in loss of service and changes on one node are replicated to other nodes, you would probably reach for MariaDB, PostgreSQL, or one of the big boys like Oracle or SQL Server. Probably the last thing that would cross your mind is sqlite. After all, sqlite is not even multi-user, much less multi-node. That's very true for sqlite...
Read More