用libmemcached做rails的cache store client

libmemcached是一个基于C库memcache client,ruby有一个封装: http://github.com/fauna/memcached/tree/master
趁这次对于Rails 2.3.2自带client性能比较的机会,也对它做了一个评测,对比下来它的性能是最好的,然后2.2.2带的次之,2.3.2带的最差。

记录一下安装过程,首先最新版本和github上的不能搭配,可以下载这2个稳定版本(由Twitter.com的开发人员提供):
wget http://blog.evanweaver.com/files/libmemcached-0.25.14.tar.gz
./configure && make && sudo make install
wget http://blog.evanweaver.com/files/memcached-0.13.gem
sudo gem install memcached-0.13.gem 


然后需要自己写一个cache store,github上已经有了:
http://github.com/cheald/libmemcached_store/tree/master

我们只需要在配置文件里面改cache store:
config.cache_store = MemcachedStore.new("localhost")
libmemcached支持很多参数,比如多台服务器,no_block/failover,具体的可以参考它的文档。

在我本机测试下来,3个客户端在一个含有较多memcache调用的页面,性能对比分别有15%的差距。

你可能感兴趣的:(cache,memcached,Ruby,Rails,twitter)