
redis
文章平均质量分 78
oracle_liuchao
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
codis 3.2集群安装
通过codis3.2实现redis3.2.8集群 一:Codis 是一个分布式 Redis 解决方案, 对于上层的应用来说, 连接到 Codis Proxy 和连接原生的 Redis Server 没有明显的区别 (不支持的命令列表https://github.com/CodisLabs/codis/blob/release3.1/doc/unsupported_cmds.md), 上层原创 2017-09-07 14:32:38 · 939 阅读 · 0 评论 -
redis集群安装配置
redis.conf port 7001 daemonize yes cluster-enabled yes cluster-config-file nodes.conf cluster-node-timeout 5000 appendonly yes bind 192.168.4.70 [root@redis1 src]# ./redis-原创 2017-09-01 12:01:35 · 963 阅读 · 0 评论 -
redis-sentinel安装配置
修改sentinel.conf配置: port 26379 daemonize yes dir /tmp logfile "/var/log/redis_26379.log" sentinel monitor mymaster 192.168.4.70 6379 2 sentinel down-after-milliseconds mymaster 30000 sentinel原创 2017-09-01 13:39:26 · 510 阅读 · 0 评论 -
redis_cluster命令官方文档翻译及实践
CLUSTER ADDSLOTS slot [slot ...] Available since 3.0.0. 从3.0.0开始可用 Time complexity: O(N) where N is the total number of hash slot arguments 时间复杂度:O(N) N是总的哈希槽数参数 This command is useful in原创 2017-09-01 16:56:04 · 452 阅读 · 0 评论