/root/redis-5.0.0/src/redis-benchmark
1、redis-benchmark -h localhost -p 6379 -c 100 -n100000
100个并发连接,100000个请求,检测host为localhost 端口为6379的redis服务器性能
2、redis-benchmark -t set,lpush -n 100000 -q
3、redis-benchmark -n 100000 -q script load"redis.call('set','foo','bar')"
只测试某些数值存取的性能