From 26dfacde8f9ea6fb1aada8852357c7824bd94d77 Mon Sep 17 00:00:00 2001 From: j4it Date: Sat, 14 Apr 2018 20:40:13 +0800 Subject: [PATCH] =?UTF-8?q?=E8=A7=84=E8=8C=83=E7=82=B9=EF=BC=8C=E7=94=A8no?= =?UTF-8?q?eviction?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- notes/Redis.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/notes/Redis.md b/notes/Redis.md index 6bf4f828..d33d6f04 100644 --- a/notes/Redis.md +++ b/notes/Redis.md @@ -427,7 +427,7 @@ Redis 这种内存数据库能支持计数器频繁的读写操作。 |volatile-random | 从已设置过期时间的数据集中任意选择数据淘汰 | | allkeys-lru | 从所有数据集中挑选最近最少使用的数据淘汰 | | allkeys-random | 从所有数据集中任意选择数据进行淘汰 | -| no-eviction | 禁止驱逐数据 | +| noeviction | 禁止驱逐数据 | 如果使用 Redis 来缓存数据时,要保证所有数据都是热点数据,可以将内存最大使用量设置为热点数据占用的内存量,然后启用 allkeys-lru 淘汰策略,将最近最少使用的数据淘汰。