Redis基准测试是用于通过同时运行n个命令来检查Redis性能的实用程序。
Benchmarks - 语法
以下是Redis基准测试的基本语法。
redis-benchmark [option] [option value]
Benchmarks - 示例
以下示例通过调用100000命令来检查Redis。
redis-benchmark -n 100000 PING_INLINE: 141043.72 requests per second PING_BULK: 142857.14 requests per second SET: 141442.72 requests per second GET: 145348.83 requests per second INCR: 137362.64 requests per second LPUSH: 145348.83 requests per second LPOP: 146198.83 requests per second SADD: 146198.83 requests per second SPOP: 149253.73 requests per second LPUSH (needed to benchmark LRANGE): 148588.42 requests per second LRANGE_100 (first 100 elements): 58411.21 requests per second LRANGE_300 (first 300 elements): 21195.42 requests per second LRANGE_500 (first 450 elements): 14539.11 requests per second LRANGE_600 (first 600 elements): 10504.20 requests per second MSET (10 keys): 93283.58 requests per second
以下是Redis基准测试中的可用选项列表。
Sr.No | Option | 描述 | Default Value |
---|---|---|---|
1 | -h | 指定服务器主机名 | 127.0.0.1 |
2 | -p | 指定服务器端口 | 6379 |
3 | -s | 指定服务器Socket | |
4 | -c | 指定并行连接数 | 50 |
5 | -n | 指定请求总数 | 10000 |
6 | -d | 指定SET/GET值的数据大小(以字节为单位) | 2 |
7 | -k | 1 =保持活动状态,0 =重新连接 | 1 |
8 | -r | 对SET/GET/INCR使用随机键,对SADD使用随机值 | |
9 | -p | 管道<numreq>请求 | 1 |
10 | -h | 指定服务器主机名 | |
11 | -q | 强制对Redis安静。仅显示查询/秒值 | |
12 | --csv | 以CSV格式输出 | |
13 | -l | 生成循环,永远运行测试 | |
14 | -t | 仅运行以逗号分隔的测试列表 | |
15 | -I | 空闲模式。只需打开N个空闲连接并等待 |
以下示例显示了Redis基准测试实用程序中的多种用法选项。
redis-benchmark -h 127.0.0.1 -p 6379 -t set,lpush -n 100000 -q SET: 146198.83 requests per second LPUSH: 145560.41 requests per second
参考链接
https://www.learnfk.com/redis/redis-benchmarks.html
标签:教程,redis,Redis,无涯,per,second,LRANGE,requests From: https://blog.51cto.com/u_14033984/9118046