sqlitemongo
sqlitemongo copied to clipboard
real time
How do I get it to work in real time? Example, when something is changed in the database(SQLite) and automatically synchronizes the data in MongoDB
Hmm... For a oneway sync one can use this tool in a cron job, but I wouldn't suggest that because it would overerite evrrything instead of diffs. Better would be to listen for diffs and patch them.
This is a good idea, thanks.