zl程序教程

您现在的位置是:首页 >  其他

当前栏目

xmemcached发布1.3.2版本

2023-03-14 22:28:59 时间
    Xmemcached是一个开源的java memcached client,具有高性能、更易用、功能完善等优点,距离上次发布1.3.1已经超过两个月,现在正式发布1.3.2这个新版本,主要的改进如下:
1、Bug修复,从1.3.1版本以来发现的bug并修复,包括:

issue 112:: 新引入的failure模式在启动的时候,如果memcached故障,运行不符合预期的bug.

issue 113: 新增加一个delete方法,可以设置操作超时

public boolean delete(final String key, long opTimeout)
            
throws TimeoutException, InterruptedException, MemcachedException;

2、性能调优,存储操作(set/add/replace/prepend/append/cas)的性能提升5%。

3、修复pom.xml,使得xmemcached可以在其他机器上编译。

4、使用github作为源码仓库,版本管理使用git替换svn,源码转移到

      https://github.com/killme2008/xmemcached

新版本下载地址:

    http://code.google.com/p/xmemcached/downloads/list

使用maven可以直接引用: 

<dependency>
      <groupId>com.googlecode.xmemcached</groupId>
      
<artifactId>xmemcached</artifactId>
      
<version>1.3.2</version>
 
</dependency>

项目文档:

http://code.google.com/p/xmemcached/w/list

文章转自庄周梦蝶  ,原文发布时间2011-03-27