php+mysql实现读写分离,该怎么解决

WBOY
Release: 2016-06-13 13:48:57
Original
840 people have browsed it

php+mysql实现读写分离
数据库主从已经做好了,怎么实现读写分离,是把涉及数据库操作的进行封装,然后对不同的操作连接不同数据库,我参考了一下google上的一段东西,不知道这样好不好
http://code.google.com/p/mysql-rw-php/

------解决方案--------------------
貌似先搭配好MS这两个数据库,之后php链接数据库时同时链接这两个数据库,之后就可以用了,数据在写入数据的时候,“写”的那台数据会同时写入“读”的那台数据库里面,是用了mysql的复制机制做的。
------解决方案--------------------
做读写分离一般是要建立主从数据库的。
插入时只插主数据库,然后复制到从数据库。
查询时只查询从数据库
------解决方案--------------------
非常好好!!!!!!!!!!!!!!!!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template