Skip to content

Commit

Permalink
规范点,用noeviction
Browse files Browse the repository at this point in the history
  • Loading branch information
mfzzz authored Apr 14, 2018
1 parent a220552 commit 26dfacd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notes/Redis.md
Original file line number Diff line number Diff line change
Expand Up @@ -427,7 +427,7 @@ Redis 这种内存数据库能支持计数器频繁的读写操作。
|volatile-random | 从已设置过期时间的数据集中任意选择数据淘汰 |
| allkeys-lru | 从所有数据集中挑选最近最少使用的数据淘汰 |
| allkeys-random | 从所有数据集中任意选择数据进行淘汰 |
| no-eviction | 禁止驱逐数据 |
| noeviction | 禁止驱逐数据 |

如果使用 Redis 来缓存数据时,要保证所有数据都是热点数据,可以将内存最大使用量设置为热点数据占用的内存量,然后启用 allkeys-lru 淘汰策略,将最近最少使用的数据淘汰。

Expand Down

0 comments on commit 26dfacd

Please sign in to comment.