Protocole
Protocole

Reputation: 1743

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?

Upvotes: 0

Views: 3617

Answers (1)

cenalulu
cenalulu

Reputation: 11

The term “MySQL Replication” is what you want~ But in factor it'll sync data whenever your data on the local server is changed~

Upvotes: 1

Related Questions