当前位置:网站首页>redis cache clearing strategy
redis cache clearing strategy
2022-08-05 05:24:00 【value growth】
1. volatile-lru: Use LRU algorithm to remove keys, only for keys with expiration time set
2. allkeys-lru: use LRU algorithm to remove keys
3. volatile-random: remove random keys from the expired set, only for keys with an expiration time set
4. allkeys-random: remove random keys
5. volitile-ttl: remove the keys with the smallest ttl value, that is, those keys that will expire recently
6. noevicate: do not remove, only return error information for write operations
边栏推荐
- 类的底层机制
- 2022 The 4th C.Easy Counting Problem (EGF+NTT)
- OFDM Lecture 16 5 -Discrete Convolution, ISI and ICI on DMT/OFDM Systems
- uboot开启调试打印信息
- Develop a highly fault-tolerant distributed system
- The software design experiment four bridge model experiment
- Opencv中,imag=cv2.cvtColor(imag,cv2.COLOR_BGR2GRAY) 报错:error:!_src.empty() in function ‘cv::cvtColor‘
- Redis - 13. Development Specifications
- NodeJs接收上传文件并自定义保存路径
- SQL(二) —— join窗口函数视图
猜你喜欢
随机推荐
"Recursion" recursion concept and typical examples
coppercam primer [6]
LAB Semaphore Implementation Details
vscode+pytorch使用经验记录(个人记录+不定时更新)
DOM及其应用
entry point injection
SQL(二) —— join窗口函数视图
Returned object not currently part of this pool
Redis - 13. Development Specifications
LeetCode: 1403. Minimum subsequence in non-increasing order [greedy]
Cryptography Series: PEM and PKCS7, PKCS8, PKCS12
Pycharm中使用pip安装第三方库安装失败:“Non-zero exit code (2)“的解决方法
Flutter TapGestureRecognizer 如何工作
Geek卸载工具
第三讲 Gradient Tutorial梯度下降与随机梯度下降
coppercam入门手册[6]
[Go through 3] Convolution & Image Noise & Edge & Texture
MySQL Foundation (1) - Basic Cognition and Operation
【过一下3】卷积&图像噪音&边缘&纹理
判断语句_switch与case









