Redis 명령 조작 중국어...login
Redis 명령 조작 중국어 매뉴얼
작가:php.cn  업데이트 시간:2022-04-12 14:07:28

Redis 성능 테스트


Redis 성능 테스트는 동시에 여러 명령을 실행하여 수행됩니다.

Syntax

Redis 성능 테스트를 위한 기본 명령은 다음과 같습니다.

redis-benchmark [option] [option value]

Instances

다음 예에서는 동시에 10,000개의 요청을 실행하여 성능을 감지합니다.

redis-benchmark -n 10000

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 성능 테스트 도구 선택적 매개 변수는 다음과 같습니다.

序号选项描述默认值
1-h指定服务器主机名127.0.0.1
2-p指定服务器端口6379
3-s指定服务器 socket
4-c指定并发连接数50
5-n指定请求数10000
6-d以字节的形式指定 SET/GET 值的数据大小2
7-k1=keep alive 0=reconnect1
8-rSET/GET/INCR 使用随机 key, SADD 使用随机值
9-P通过管道传输 <numreq> 请求1
10-q强制退出 redis。仅显示 query/sec 值
11--csv以 CSV 格式输出
12-l生成循环,永久执行测试
13-t仅运行以逗号分隔的测试命令列表。
14-IIdle 模式。仅打开 N 个 idle 连接并等待。

Instances

다음 예에서는 Redis 성능을 테스트하기 위해 여러 매개 변수를 사용했습니다.

redis-benchmark -h 127.0.0.1 -p 6379 -t set,lpush -n 10000 -q

SET: 146198.83 requests per second
LPUSH: 145560.41 requests per second

위 예에서 호스트는 127.0.0.1, 포트 번호는 6379, 실행된 명령은 lpush, 숫자로 설정됩니다. of request는 10000이며, -q 매개변수는 결과만 표시하는 데 사용됩니다. 초당 수행된 요청 수를 표시합니다.

PHP 중국어 웹사이트