redis
IamOceanKing
这个作者很懒,什么都没留下…
展开
-
Redis-3.2.5 redis.conf说明
# Redis configuration file example. # # Note that in order to read the configuration file, Redis must be # started with the file path as first argument: # # ./redis-server /path/to/redis.conf转载 2017-03-29 11:31:33 · 920 阅读 · 0 评论 -
Redis-2.8.19-info命令说明
# Server redis_version:2.8.19 ###redis版本号 redis_git_sha1:00000000 ###git SHA1 redis_git_dirty:0 ###git dirty flag redis_build_id:78796c63e58b72dc redis_mode:standalone ###redis运行模式 os:Linux 2.6.转载 2017-03-29 11:32:57 · 763 阅读 · 0 评论 -
Redis-Sentinel
概述 Redis-Sentinel是Redis官方推荐的高可用性(HA)解决方案,当用Redis做Master-slave的高可用方案时,假如master宕机了,Redis本身(包括它的很多客户端)都没有实现自动进行主备切换,而Redis-sentinel本身也是一个独立运行的进程,它能监控多个master-slave集群,发现master宕机后能进行自懂切换。 它的主要功能有以下几点转载 2017-03-29 11:33:36 · 281 阅读 · 0 评论 -
Redis过期键删除策略
Redis key过期的方式有三种: 被动删除:当读/写一个已经过期的key时,会触发惰性删除策略,直接删除掉这个过期key 主动删除:由于惰性删除策略无法保证冷数据被及时删掉,所以Redis会定期主动淘汰一批已过期的key 当前已用内存超过maxmemory限定时,触发主动清理策略 被动删除 只有key被操作时(如GET),REDIS才会被动检查该key是否过期,如果过期则转载 2017-03-29 11:34:35 · 594 阅读 · 0 评论 -
redis命令
redis原创 2017-04-14 15:51:55 · 306 阅读 · 0 评论