memcached java的简单调用

  1. memcached官网下载安装

  2. memcached java客户端

  3. java代码的简单使用。

import com.danga.MemCached.MemCachedClient;
import com.danga.MemCached.SockIOPool;

public class TestMemcached {

    //memcached 服务列表 
    private static String[] servers = { "127.0.0.1:11211"};

    public static void main(String[] args) {  
        //初始化SockIOPool,管理memcached的连接池
        SockIOPool pool = SockIOPool.getInstance();

        //设置服务列表
        pool.setServers(servers);

        //配置其参数
        pool.setFailover(true);  
        pool.setInitConn(10);  
        pool.setMinConn(5);  
        pool.setMaxConn(250);  
        pool.setMaintSleep(30);  
        pool.setNagle(false);  
        pool.setSocketTO(3000);
        pool.setAliveCheck(true);  
        pool.initialize();

        /*建立MemcachedClient实例*/  
        MemCachedClient memCachedClient = new MemCachedClient();  

        //注意 对于对象需实现 Serializable 接口 或者变成json字符串保存 
        boolean status = memCachedClient.set("person", "{}");

        //从缓存获取
        String pp = (String) memCachedClient.get("person");

        System.out.println(String.format("保存状态:%s, 从缓存获得的:%s", status, pp));
    }  
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值