memcache Java客户端调用小例子

需要安装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));
    }
   }
  }
  
 }
}

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值