摘要: mysql 索引下推 个人认为 主要场景是组合索引上 idx_age_reward select * from t_user where age > 20 and reward = 100000; 联合索引当遇到范围查询 (>、<) 就会停止匹配,也就是 age 字段能用到联合索引,但是 rewar 阅读全文
posted @ 2023-10-27 17:53 zhonghuahero 阅读(3) 评论(0) 推荐(0) 编辑
摘要: 过期删除策略 Redis 是可以对 key 设置过期时间的,因此需要有相应的机制将已过期的键值对删除,而做这个工作的就是过期键值删除策略。 如何设置过期时间? 先说一下对 key 设置过期时间的命令。 设置 key 过期时间的命令一共有 4 个: expire <key> <n>:设置 key 在 阅读全文
posted @ 2023-10-27 17:48 zhonghuahero 阅读(79) 评论(0) 推荐(0) 编辑