Home | 简体中文 | 繁体中文 | 杂文 | Github | 知乎专栏 | Facebook | Linkedin | Youtube | 打赏(Donations) | About
知乎专栏

部分 IV. Redis

目录

32. Redis 安装
32.1. CentOS 8 Stream
32.2. CentOS 7
32.3. CentOS 6
32.3.1. 主从同步
32.3.2. Sentinel
32.4. Ubuntu
32.5. Mac 安装 Redis
32.6. 源码编译安装
32.7.
32.8. Test Redis
33. /etc/redis.conf
33.1. 密码认证
33.2. maxmemory-policy TTL 过期策略配置
33.3. aclfile
34. redis-cli - Command-line client to redis-server
34.1. 命令参数
34.1.1. password
34.1.2. raw
34.2. --latency Enter a special mode continuously sampling latency.
34.3. 清空指定数据库
34.4. 用户认证
34.4.1. 传统 requirepass 认证
34.5. ACL 用户/密码认证
34.5.1. 查看用户列表
34.5.2. 用户删除
34.5.3. 设置默认密码
34.5.4. 创建用户
34.5.5. 查看 ACL 列表
34.5.6. 检验用户名和密码
34.6. MONITOR
34.7. info
34.8. save/bgsave/lastsave
34.9. config
34.10. keys
34.11. 字符串操作
34.11.1. set/get/del
34.11.2. setnx
34.12. expire/ttl
34.13. 获取 key 类型
34.14. LIST 数据类型
34.15. set 无序字符集合
34.15.1. 查看元素是否存在
34.16. zset (有序集合)
34.17. HASH
34.18. Pub/Sub 订阅与发布
34.19. flushdb 清空 Redis 数据
35. redis-benchmark 测试工具
36. Redis Cluster
37. Redis 通信协议
37.1. 切换DB
37.2. 监控
38. Redis 开发
38.1. 消息订阅与发布
38.2. 选择数据库
39. 工具
39.1. 导出 / 导入
39.2. phpRedisAdmin
39.3. A fast, light-weight proxy for memcached and redis
40. FAQ
40.1. 清空数据库
40.2. (error) MISCONF Redis is configured to save RDB snapshots
40.3. You can't write against a read only replica.
40.4. MISCONF Redis is configured to save RDB snapshots, but it's currently unable to persist to disk. Commands that may modify the data set are disabled, because this instance is configured to report errors during writes if RDB snapshotting fails (stop-writes-on-bgsave-error option). Please check the Redis logs for details about the RDB error.
40.5.

http://redis.io/