您的位置:首页 > 数据库 > Memcache

memcache Java客户端调用小例子

2013-04-01 14:47 302 查看
需要安装memcache

执行依赖于memcached-2.6.6.jar, slf4j-api-1.6.1.jar, commons-pool-1.3.jar



package memcached;

import java.util.ArrayList;

import java.util.List;

import com.danga.MemCached.MemCachedClient;

import com.danga.MemCached.SockIOPool;

/**

* Created by IntelliJ IDEA. User: liuzhy Date: 2010-12-3 Time: 16:43:36

*/

public class MemCacheInvoke {

protected static MemCachedClient mcc = new MemCachedClient();

static {

// 设置缓存服务器列表,当使用分布式缓存的时,可以指定多个缓存服务器。这里应该设置为多个不同的服务,我这里将两个服务设置为一样的,大家不要向我学习,呵呵。

String[] servers = {

// "10.15.0.215:46697",

// "10.15.0.215:46697",

"127.0.0.1:11211",

// "server3.mydomain.com:1624"

};

// 设置服务器权重

Integer[] weights = { 3, 2 };

// 创建一个Socked连接池实例

SockIOPool pool = SockIOPool.getInstance();

// 向连接池设置服务器和权重

pool.setServers(servers);

pool.setWeights(weights);

// set some TCP settings

// disable nagle

// set the read timeout to 3 secs

// and don't set a connect timeout

pool.setNagle(false);

pool.setSocketTO(3000);

pool.setSocketConnectTO(0);

// initialize the connection pool

pool.initialize();

}

public static void main(String[] args) {

mcc.set("foo", "This is a test String");

String foo = mcc.get("foo").toString();

System.out.println("===foo===" + foo);



List list = new ArrayList();

list.add(0, "first");

list.add(1, "second");

list.add(2, "third");

mcc.set("list", list);



List resutList = (ArrayList) mcc.get("list");

if(resutList!=null){

System.out.println("===resutList.size()===" + resutList.size());

if(resutList.size()>0){

for (int i = 0; i < resutList.size(); i++) {

System.out.println("===resutList==="+i+"===" + resutList.get(i));

}

}

}



}

}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: