首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

cassandra客户端hector运用TIPs

2013-04-21 
cassandra客户端hector使用TIPsHFactory.getOrCreateCluster(MyCluster,host1:9160,host2:9160,host3:9

cassandra客户端hector使用TIPs
HFactory.getOrCreateCluster("MyCluster","host1:9160,host2:9160,host3:9160")

?

方法二、

?

HFactory.getOrCreateCluster("MyCluster","host0:9160")cluster.addHost(new CassandraHost("host1", 9160), true);cluster.addHost(new CassandraHost("host2", 9160), true);cluster.addHost(new CassandraHost("host3", 9160), true);

? ?注意:addHost()方法第二个参数为true才会真正生效

?

--end

?

?

?

热点排行