I am aware of the possibility to create my own trigger(ed) solution, but I didn't want to reinvent the wheel :-)
Asked
Active
Viewed 3,879 times
2 Answers
6
Berkeley DB's SQL API is completely SQLite compatible and offers HA/replication for high availability. The combination of SQLite's easy-of-use and Berkeley DB's scalability and reliability are a great combination.
Disclaimer: I'm the Product Manager for Berkeley DB, so I'm a little biased. However, one of the main benefits of adding the SQLite API to Berkeley DB is that SQLite applications can now have HA/replication for mission-critical, highly available applications.
-
1I read from the docs: Only the master node can modify the database. So this is not for me :-( – ralf.w. Mar 09 '11 at 08:10
2
Yes, there are some:
- LiteReplica (Single master)
- LiteSync (Multi-master)
- AergoLite (Blockchain based)
They are additions to the SQLite3 code. The interface is unchanged so we don't need to change the application code.
Disclosure: I am the creator
Bernardo Ramos
- 131
- 3