博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Redis基准
阅读量:6555 次
发布时间:2019-06-24

本文共 1338 字,大约阅读时间需要 4 分钟。

Redis的基准是实用程序运行n个命令检查Redis 的性能。

语法

的基准的基本语法如下所示:

redis-benchmark [option] [option ]

例子

下面给出的例子调用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 s): 93283.58 requests per second

Redis的基准有许多可供选择,分列如下:

S.N. 选项 描述 默认值
1 -h 指定的主机名 127.0.0.1
2 -p 指定服务器 6379
3 -s 指定服务器套接字  
4 -c 指定并行连接数 50
5 -n 指定请求总数 10000
6 -d 指定以字节为单位设置/获取值的大小 2
7 -k 1=保持活动0=重新连接 1
8 -r 使用随机键对SET/GET/INCR,随机SADD值  
9 -p 管道<numreq>请求 1
1 -h 指定服务器的主机名  
10 -q Redis强制安静操作。只显示查询/秒值  
11 –csv 输出为CSV格式  
12 -l 产生循环,永远运行  
13 -t 只有运行的逗号分隔的测试列表。  
14 -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

 

转载地址:http://zotco.baihongyu.com/

你可能感兴趣的文章
linux extract rar files
查看>>
Knockout.Js官网学习(监控属性Observables)
查看>>
ORA-12514: TNS: 监听程序当前无法识别连接描述符中请求的服务解决
查看>>
azure之MSSQL服务性能测试
查看>>
Android BitmapFactory.Options
查看>>
前端构建:Less入了个门
查看>>
phonegap(cordova) 自己定义插件代码篇(三)----支付宝支付工具整合
查看>>
linux 批量进行:解压缩某一类压缩文件类型的文件
查看>>
激活modelsim se 10.4 时运行patch_dll.bat不能生成TXT
查看>>
17秋 软件工程 Alpha 事后诸葛亮会议
查看>>
线性空间
查看>>
疑似checkpoint堵塞数据库连接
查看>>
Node.js中针对中文的查找和替换无效的解决方法
查看>>
理解指针的关键
查看>>
如何查看Ubuntu下已安装包版本号
查看>>
我的那些年(2)~我毕业了
查看>>
VS2017 配置ImageMagick
查看>>
Hive任务优化--控制hive任务中的map数和reduce数
查看>>
[摄影]上海往事
查看>>
『原创』c#实现文件加密、解密及文件拖拽至程序图标直接打开
查看>>