Redis 是一个高性能的key-value数据库。 redis的出现,很大程度补偿了memcached这类keyvalue存储的不足,在部 分场合可以对关系数据库起到很好的补充作用。它提供了Python,Ruby,Erlang,PHP客户端,使用很方便。
性能测试结果:
SET操作每秒钟 110000 次,GET操作每秒钟 81000 次,服务器配置如下:
Linux 2.6, Xeon X3320 2.5Ghz.
stackoverflow 网站使用 Redis 做为缓存服务器。
2012-08-30 发布2.4.17。上一个版本是2012-08-02的2.4.16下一个系列2.6已发布RC6.正式版应该快了。
改进:
What's new in Redis 2.4.17 ========================== * INFO command now contains the run_id field for Redis Sentinel compatibility. * Support for the "slave priority" parameter published via INFO and used by Redis Sentinel. * [BUGFIX] An optimization to convert double values into strings was not used because of an error in a preprocessor directive. Now it's fixed. Saving datasets with many sorted sets should be faster. * [BUGFIX] Fixed a theoretic bug in the ziplist implementation. 下载:http://redis.googlecode.com/files/redis-2.4.17.tar.gz
引用来自“阿J小虫”的评论
发展挺快啊,可惜暂时用不上