初识redis之性能测试
最近接触一项新技术的方法都是通过测试来入门的。对测试这件事情有了新的认识,觉得是类似做实验的一种方式。尤其对于后端,测试的性能指标是技术选型的重要参考。
好了,如果你想做一下redis的性能测试,不要苦逼的还得去想怎么写代码了。redis提供了现成的工具, redis-benchmark,我们来看一下怎么用吧。
关于redis 性能测试
如果想测试特定操作例如set和lpush 可以:
./redis-benchmark -t set,lpush -n 100000 -q
如果想测试特定redis操作,例如 hset 可以:
./redis-benchmark -l -n 100000 hset myhash 12315 12315
如果想测试lua脚本,可以先通过script load 载入redis server, 然后执行产生的sha值即可,例如hset 可以:
127.0.0.1:6379\> SCRIPT LOAD 'redis.call("hset","myhash",12315,12315)'
"a868de0a0e3254dsdf32323230d0eb"
./redis-benchmark -l -n 100000 -q EVALSHA a868de0a0e3254dsdf32323230d0eb
supplementary materials: benchmark 参数选项
Usage: redis-benchmark [-h
-h <hostname> Server hostname (default 127.0.0.1)
-p <port> Server port (default 6379)
-s <socket> Server socket (overrides host and port)
-a <password> Password for Redis Auth
-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.
既然开始,就把这条线继续下去吧,下面要学习
redis命令
redis教程
redis文档
redis原理
参考文章: http://www.redis.cn/topics/benchmarks.html