Replication is not very hard to create.
Here s some good tutorials:
http://www.ghacks.net/2009/04/09/set-up-mysql-database-replication/
rel=“nofollow noreferer”> http://mysql.com/doc/refman/5.5/en/replication-howto.html。
http://www.lassosoft.com/Beginners-Guide-to-MySQL-Replication 。
在此,你们必须铭记一些简单的规则(当然更是,这是主要概念):
- Setup 1 server (master) for writing data.
- Setup 1 or more servers (slaves) for reading data.
这样,你就可以避免错误。
For example:
If your script insert into the same tables on both master and slave, you will have duplicate primary key conflict.
你可以把“奴隶”视为“备用”服务器,拥有与主人相同的信息,但不能直接补充数据,只能遵循主机的指示。
NOTE: 当然,你可以从主人那里读到,你可以写给奴隶,但可以确保你不给同一张桌子(奴隶和奴隶主)。
我建议监测你的服务器,以确保一切都受到罚款。
让我知道,你们是否需要额外的帮助?