Redis发布了集群版3.0.0 beta

Redis不是比较成熟的Memcache或者Mysql的替代品,是对于大型互联网类应用在架构上很好的补充。现在有越来越多的应用也在纷纷基于Redis做架构的改造. Redis已经发布集群版3.0.0beta,相信在不久的将来就会出稳定版本。

      Redis集群版3.0.0beta版的功能介绍如下:

      This is the first beta of Redis 3.0.0. Redis 3.0 features support for Redis Cluster and important speed improvements under certain workloads. This is a developers preview and is not suitable for production environments. The next beta scheduled for 11 March 2014. For the complete list of new features, please check the Release Notes. 

      详见:http://redis.io/download

      关于redis集群实现的规范,详见:

      http://www.redisdoc.com/en/latest/topic/cluster-spec.html

      关于集群版的安装部署,可以参见:(比较容易安装配置)

      http://redis.io/topics/cluster-tutorial

      在 Redis 的 Cluster 方案还没有正式推出之前,通过 Proxy 的方式来实现存储集群可能是最好的选择了。如Twitter推出的Twemproxy 产品

      根据 Redis 作者的测试结果,在大多数情况下,Twemproxy 的性能相当不错,直接操作 Redis 相比,最多只有20%的性能损失

      Twemproxy的项目地址:https://github.com/twitter/twemproxy

原文地址:https://www.cnblogs.com/scwanglijun/p/3902716.html