数据库 – 你如何获得最后10个键redis?

前端之家收集整理的这篇文章主要介绍了数据库 – 你如何获得最后10个键redis?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
假设我有一个具有1,000,000个密钥的数据库.有没有办法知道该数据库中的最后10个密钥?

解决方法

您将需要使用以下命令将其维护为另一个列表.
Add new key to the front of the list  
LPUSH last10keys key

Retain only the last 10
LTRIM last10keys 0 9

Get the last keys - will return 10 or less
LRANGE mylist 0 9
原文链接:https://www.f2er.com/mssql/81989.html

猜你在找的MsSQL相关文章