问题标题:
Redis如何获取记录的个数?现在知道keyspattern可以获取该pattern的所以key,但是如何获取key个数
问题描述:
Redis如何获取记录的个数?现在知道keyspattern可以获取该pattern的所以key,但是如何获取key个数
谭桂龙回答:
DBSIZE
Returnthenumberofkeysinthecurrently-selecteddatabase.
石倩回答:
您好,dbsize可以获取当前数据库的总数,但是好像并不能获取某些特征的key的数量。或者可以为某些特征的key在服务器上在创建一个数据库??不太懂,望指教,谢谢!
谭桂龙回答:
想要取指定pattern的key的数量?这个功能Redis没有,以后也不会有。有人在github上向antirez提过这个要求,结果被否决了,理由是:Hi,KEYSisonlyintendedfordebuggingsinceitisO(N)andperformsafullkeyspacescan.COUNThasthesameproblembutwithouttheexcuseofbeingusefulfordebugging...(sinceyoucansimplyuseredis-clikeys...|grep...).Sofeaturenotaccepted.Thanksforyourinterest.
点击显示
其它推荐