Redis官方已经说了,Redis有官方自己的性能测试工具!https://redis.io/topics/benchmarks
我们自己试试吧
代码语言:javascript复制redis-benchmark [-h <host>] [-p <port>] [-c <clients>] [-n <requests]> [-k <boolean>]
参数说明
-h <hostname> Server hostname (default 127.0.0.1) 服务地址,默认是127.0.0.1
-p <port> Server port (default 6379) 服务端口,默认是6379
-s <socket> Server socket (overrides host and port)
-a <password> Password for Redis Auth Redis认证密码
-c <clients> Number of parallel connections (default 50)
-n <requests> Total number of requests (default 100000)
-d <size> Data size of SET/GET value in bytes (default 2)
--dbnum <db> SELECT the specified db number (default 0)
-k <boolean> 1=keep alive 0=reconnect (default 1)
-r <keyspacelen> Use random keys for SET/GET/INCR, random values for SADD
Using this option the benchmark will expand the string __rand_int__
inside an argument with a 12 digits number in the specified range
from 0 to keyspacelen-1. The substitution changes every time a command
is executed. Default tests use this to hit random keys in the
specified range.
-P <numreq> Pipeline <numreq> requests. Default 1 (no pipeline).
-q Quiet. Just show query/sec values
--csv Output in CSV format
-l Loop. Run the tests forever
-t <tests> Only run the comma separated list of tests. The test
names are the same as the ones produced as output.
-I Idle mode. Just open N idle connections and wait.
官方的一个所有种类测试的典型例子
代码语言:javascript复制# 测试阶段 服务器CPU性能会占用变高
redis-benchmark -q -n 100000
图片说了 每秒SET 命令能处理34545.32个请求。其他的自行查看
云服务器CPU更强,性能更好,CPU到95% 跑个5W qps 每问题!
宝塔Redis 的性能测试在:/www/server/redis/src/
代码语言:javascript复制# 进入宝塔 redis-benchmark
cd /www/server/redis/src
# 进行测试
./redis-benchmark -q -n 100000 -a 密码 -p 端口
示例:
./redis-benchmark -q -n 100000 -a 密码 -p 6379
特殊说明: 解决问题的光鲜,藏着磕Bug的痛苦。 万物皆入轮回,谁也躲不掉! 以上文章,均是我实际操作,写出来的笔记资料,不会出现全文盗用别人文章!烦请各位,请勿直接盗用!