spring与memcached如何集成
这篇文章主要介绍了spring与memcached如何集成,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

创新互联科技有限公司专业互联网基础服务商,为您提供成都天府联通服务器托管,高防主机,成都IDC机房托管,成都主机托管等互联网服务。
applicationContext.xml
ip和端口号
java class
package com.bw.memcached;
import org.springframework.context.support.ClassPathXmlApplicationContext;
import com.danga.MemCached.MemCachedClient;
import com.danga.MemCached.SockIOPool;
//import com.schooner.MemCached.SchoonerSockIOPool;
public class MemcachedTest {
public static void main(String[] args) {
@SuppressWarnings("resource")
ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext("classpath:applicationContext.xml");
context.getBean("sockIOPool",SockIOPool.class);
MemCachedClient client = new MemCachedClient();
// SockIOPool sockIo = SockIOPool.getInstance(); //得到一个初始的池子用来存放连接
// String[] as = {"ip:端口号"}; //声明一个字符串数组,存放连接
// sockIo.setServers(as); //将所有的连接加入池子
// sockIo.setInitConn(10); //设置初始化连接数
// sockIo.initialize(); //进行初始化
// System.out.println("=======初始化连接数======="+sockIo.getInitConn());
client.add("键", "对象");
System.out.println(client.get("键"));
//以上注释的都是在没有与spring集成的情况下
}
}感谢你能够认真阅读完这篇文章,希望小编分享的“spring与memcached如何集成”这篇文章对大家有帮助,同时也希望大家多多支持创新互联,关注创新互联行业资讯频道,更多相关知识等着你来学习!
网站名称:spring与memcached如何集成
网页地址:http://www.jxjierui.cn/article/ggsscg.html


咨询
建站咨询
