我需要将我的MYSQL本地Db与远程网站Db同步吗?
是
MySQL和PHP脚本......请提供建议和步骤?
一旦可能......
谢谢!!!!
答案 0 :(得分:0)
我想你是在谈论关于mysql的复制。
Replication enables data from one MySQL database server (the master) to be replicated to one or more MySQL database servers (the slaves). Replication is asynchronous - slaves need not be connected permanently to receive updates from the master.
这可以通过设置从系统和主系统来完成..
您可以查看有关复制here的更多信息。
答案 1 :(得分:0)
您要查找的“同步”功能称为 replication 。可以在主机和从机之间建立复制。它不依赖于常量连接,而是将所有更改存储在主服务器上,并在建立连接后重置从服务器上的所有更改。
请检查此simple tutorial