memcache java 安装_memcache安装与使用(二)

本文介绍了如何在Java中使用Memcached,包括下载Java客户端API,设置连接池,以及通过MemCachedClient进行数据存取。示例代码展示了如何连接到Memcache服务器并执行基本操作。
摘要由CSDN通过智能技术生成

使用java调用memcache,获取数据

1,下载客户端

下载java客户端API,实际上是一个jar包。

http://www.danga.com/memcached/apis.bml

memcache支持很多种客户端调用如:Perl、php、python、Ruby、java、C#、C等等

在java中目前支持两种客户端“Java API for memcached”和“Improved Java API for memcached”

我用的是前者,因为它有详细的说明文档

下载http://img.whalin.com/memcached/jdk6/standard/java_memcached-release_2.0.1.jar

2,开始用java程序调用memcached

在eclipse中新建一个工程,将上面下载的java_memcached-release_2.0.1.jar引入工程。

新建java类memcachedTest

import com.danga.MemCached.MemCachedClient;

import com.danga.MemCached.SockIOPool;

public class memcachedTest {

// create a static client as most installs only need

// a single instance

protected static MemCachedClient mcc = new MemCachedClient();

//连接memcache

static{

// set up connection pool once at class load

// server list and weights

String[] servers =

{

"192.168.0.20:11211",

"192.168.0.20:11212"

};

Integer[] weights = { 3,2 };

// grab an instance of our connection pool

SockIOPool pool = SockIOPool.getInstance();

// set the servers and the weights

pool.setServers( servers );

pool.setWeights( weights );

// set some basic pool settings

// 5 initial, 5 min, and 250 max conns

// and set the max idle time for a conn

// to 6 hours

pool.setInitConn( 5 );

pool.setMinConn( 5 );

pool.setMaxConn( 250 );

pool.setMaxIdle( 1000 * 60 * 60 * 6 );

// set the sleep for the maint thread

// it will wake up every x seconds and

// maintain the pool size

pool.setMaintSleep( 30 );

// 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();

// lets set some compression on for the client

// compress anything larger than 64k

mcc.setCompressEnable( true );

mcc.setCompressThreshold( 64 * 1024 );

}

public static void main(String[] a){

for(int i=0;i<1000;i++){

mcc.set( "Test_"+i, "hello world_"+i);

}

//第一次运行讲一下三行注释,用以上面三行进行数据插入,以后运行就将上面三行注释,运行下面三行语句来看执行效果。

System.out.println("dd1="+(String)mcc.get( "Test_967"));

System.out.println("dd2="+(String)mcc.get( "Test_984"));

System.out.println("dd3="+(String)mcc.get( "Test_981"));

System.out.println("End");

}

}

网上参考资料:

http://bbs.linuxpk.com/thread-13497-1-1.html

http://www.ccvita.com/257.html

http://www.danga.com/memcached/apis.bml

http://www.whalin.com/memcached/

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值