redis命令bigkey检查

2021/4/17 19:28:51

本文主要是介绍redis命令bigkey检查,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

./redis-cli -h ip -p port -a password --bigkeys
#输出结果:临时搭建环境,没有key做检查
[root@localhost /usr/local/redis-5.0.4]# redis-cli -a redis --bigkeys
Warning: Using a password with '-a' or '-u' option on the command line interface may not be safe.

# Scanning the entire keyspace to find biggest keys as well as
# average sizes per key type.  You can use -i 0.1 to sleep 0.1 sec
# per 100 SCAN commands (not usually needed).

[00.00%] Biggest string found so far 'key1759' with 4 bytes
[20.43%] Biggest string found so far 'key10000' with 5 bytes
[39.21%] Biggest string found so far 'key' with 106 bytes

-------- summary -------

Sampled 10003 keys in the keyspace!
Total key length in bytes is 68906 (avg len 6.89)

Biggest string found 'key' has 106 bytes

0 lists with 0 items (00.00% of keys, avg size 0.00)
0 hashs with 0 fields (00.00% of keys, avg size 0.00)
10003 strings with 39009 bytes (100.00% of keys, avg size 3.90)
0 streams with 0 entries (00.00% of keys, avg size 0.00)
0 sets with 0 members (00.00% of keys, avg size 0.00)
0 zsets with 0 members (00.00% of keys, avg size 0.00)

 



这篇关于redis命令bigkey检查的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程