Automatic syncing database on local server to remote server
I have developed a django application using MySQL as database engine.
I want my application to performing any action with database on the local machine then in an interval of time (suppose every 5 minutes) the local database sync to the database on开发者_如何学编程 the server automatically.
How can I do this kind of thing, using MySQL script or django can do it for me using its tools?
The term “MySQL Replication” is what you want~ But in factor it'll sync data whenever your data on the local server is changed~
精彩评论