Redis 3.2 計劃特性
Redis 是一個高性能的key-value數據庫。 redis的出現,很大程度補償了memcached這類keyvalue存儲的不足,在部 分場合可以對關系數據庫起到很好的補充作用。它提供了Python,Ruby,Erlang,PHP客戶端,使用很方便。
性能測試結果:
SET操作每秒鐘 110000 次,GET操作每秒鐘 81000 次,服務器配置如下:
Linux 2.6, Xeon X3320 2.5Ghz.
stackoverflow 網站使用 Redis 做為緩存服務器。
Redis 在 CentOS 下的啟動腳本請看這里。
Redis 3.2 還未發布,Antirez 發布了一篇聲明,分享 Redis 3.2 計劃特性:
-
Geo hashing API
-
Bloom filters
-
Memory PRs
-
Memory introspection command
-
Some Redis Cluster multi DC support
-
New List type operations
-
AOF safety 功能請看:https://github.com/antirez/redis/pull/2574
-
AOF rewrites optionally using an RDB preamble
-
SPOP COUNT option (already implemented, 3.2 will be the first stable versions to get it))
-
Redis Cluster redis-trib rebalance command
更多詳細內容請看這里:http://antirez.com/news/89。