一 分析Redis.conf配置文件
Redis配置文件如下
1.单位
2.导入文件
3.网络配置
4.通用配置
#四种级别
# Specify the server verbosity level.
# This can be one of:
# debug (a lot of information, useful for development/testing)
# verbose (many rarely useful info, but not a mess like the debug level)
# notice (moderately verbose, what you want in production probably)
# warning (only very important / critical messages are logged)
5.快照
持久化,在规定时间内,执行了多少次操作后,就会持久化到 .rdb .aof中
6.Security 安全
可以在这里设置Redis密码,默认是没有密码的
config set requirepass "123456" #设置密码
7.限制 LIMITS
处理策略
1.volatile-lru:只对设置了过期时间的key进行lru
2.allkeys-lru:删除lru算法的key
3.volatile-lru:随即删除即将过期的key
4.allkeys-random:随即删除
5.volatile-ttl:删除即将过期的
6.noevicition:永不过期,返回报错