香港云主机最佳企业级服务商!

ADSL拨号VPS包含了中国大陆(联通,移动,电信,)

中国香港,国外拨号VPS。

当前位置:云主机 > MYSQL >

电信ADSL拨号VPS
联通ADSL拨号VPS
移动ADSL拨号VPS

MySQL 读写分离实例详解


时间:2020-11-02 13:48 作者:admin


mysql/' target='_blank'>mysql 读写分离

MySQL读写分离又一好办法 使用 com.mysql.jdbc.ReplicationDriver

在用过Amoeba 和 Cobar,还有dbware 等读写分离组件后,今天我的一个好朋友跟我讲,MySQL自身的也是可以读写分离的,因为他们提供了一个新的驱动,叫 com.mysql.jdbc.ReplicationDriver

说明文档:http://dev.mysql.com/doc/refman/5.1/en/connector-j-reference-replication-connection.html

代码例子:

import java.sql.Connection;import java.sql.ResultSet;import java.util.Properties; import com.mysql.jdbc.ReplicationDriver; public class ReplicationDriverDemo {  public static void main(String[] args) throws Exception {  ReplicationDriver driver = new ReplicationDriver();   Properties props = new Properties();   // We want this for failover on the slaves  props.put("autoReconnect", "true");   // We want to load balance between the slaves  props.put("roundRobinLoadBalance", "true");   props.put("user", "foo");  props.put("password", "bar");   //  // Looks like a normal MySQL JDBC url, with a  // comma-separated list of hosts, the first  // being the 'master', the rest being any number  // of slaves that the driver will load balance against  //   Connection conn =    driver.connect("jdbc:mysql:replication://master,slave1,slave2,slave3/test",      props);   //  // Perform read/write work on the master  // by setting the read-only flag to "false"  //   conn.setReadOnly(false);  conn.setAutoCommit(false);  conn.createStatement().executeUpdate("UPDATE some_table ....");  conn.commit();   //  // Now, do a query from a slave, the driver automatically picks one  // from the list  //   conn.setReadOnly(true);   ResultSet rs =   conn.createStatement().executeQuery("SELECT a,b FROM alt_table");    ....... }}

感谢阅读,希望能帮助到大家,谢谢大对本站的支持!

(责任编辑:admin)






帮助中心
会员注册
找回密码
新闻中心
快捷通道
域名登录面板
虚机登录面板
云主机登录面板
关于我们
关于我们
联系我们
联系方式

售前咨询:17830004266(重庆移动)

企业QQ:383546523

《中华人民共和国工业和信息化部》 编号:ICP备00012341号

Copyright © 2002 -2018 香港云主机 版权所有
声明:香港云主机品牌标志、品牌吉祥物均已注册商标,版权所有,窃用必究

云官方微信

在线客服

  • 企业QQ: 点击这里给我发消息
  • 技术支持:383546523

  • 公司总台电话:17830004266(重庆移动)
  • 售前咨询热线:17830004266(重庆移动)