[REDIS]redis 中命令server/dbsize的用法

1/4/2024 1:58:02 PM
553
0

DBSIZE#

DBSIZE

返回当前数据库的 key 的数量。

可用版本:
>= 1.0.0
时间复杂度:
O(1)
返回值:
当前数据库的 key 的数量。
redis> DBSIZE
(integer) 5
redis> SET new_key "hello_moto" # 增加一个 key 试试
OK
redis> DBSIZE
(integer) 6

全部评论



提问