当前位置: 软件>java软件
beansdb的java客户端 beansdb4j
本文导语: 这是beansdb的java客户端, 它使用了和python客户端一模一样的hash算法, 所以它和python客户端是完全兼容 — 这意味着你可以用python客户端存一个东西进beansdb, 然后用java客户端把它取出来。 示例代码: // specify the beansdb nodes. Map...
这是beansdb的java客户端, 它使用了和python客户端一模一样的hash算法, 所以它和python客户端是完全兼容 — 这意味着你可以用python客户端存一个东西进beansdb, 然后用java客户端把它取出来。
示例代码:
// specify the beansdb nodes.
Map servers = new HashMap();
servers.put(new InetSocketAddress("localhost", 7900), new Range(, 16));
servers.put(new InetSocketAddress("localhost", 7901), new Range(, 16));
servers.put(new InetSocketAddress("localhost", 7902), new Range(, 16));
// 3,2,2 is the NRW number in the Dynamo thesis
Beansdb db = new Beansdb(servers, 16, 3, 2, 2);
// set the key: foo to value: bar
db.set("foo", "bar");
// get the value of foo
System.out.println(db.get("foo"));
// get the value for keys: hello, james, foo
List keys = new ArrayList(3);
keys.add("hello");
keys.add("james");
keys.add("foo");
Map ret = db.getMulti(keys);
for (String key : ret.keySet()) {
System.out.println(key + " : " + ret.get(key));
}
// delete the key: foo
db.delete("foo");
// close the db connection
db.close();
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。