From df3cbb65dce6bd76fe412f98d53f0b4890603ab5 Mon Sep 17 00:00:00 2001 From: guide Date: Sun, 23 Aug 2020 10:45:02 +0800 Subject: [PATCH] =?UTF-8?q?[refractor]redis=E5=86=85=E5=AD=98=E6=B7=98?= =?UTF-8?q?=E6=B1=B0=E6=9C=BA=E5=88=B6?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- docs/database/Redis/redis-all.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/database/Redis/redis-all.md b/docs/database/Redis/redis-all.md index 6a2ef0f1..45904d81 100644 --- a/docs/database/Redis/redis-all.md +++ b/docs/database/Redis/redis-all.md @@ -485,8 +485,8 @@ Redis 提供 6 种数据淘汰策略: 4.0 版本后增加以下两种: -7. **volatile-lfu**:从已设置过期时间的数据集(server.db[i].expires)中挑选最不经常使用的数据淘汰 -8. **allkeys-lfu**:当内存不足以容纳新写入数据时,在键空间中,移除最不经常使用的 key +7. **volatile-lfu(least frequently used)**:从已设置过期时间的数据集(server.db[i].expires)中挑选最不经常使用的数据淘汰 +8. **allkeys-lfu(least frequently used)**:当内存不足以容纳新写入数据时,在键空间中,移除最不经常使用的 key ### 14. Redis 持久化机制(怎么保证 Redis 挂掉之后再重启数据可以进行恢复)