Redis 效能測試

2022-04-13 12:33:56 字數 2047 閱讀 5605

redis 效能測試是通過同時執行多個命令實現的。

redis 效能測試的基本命令如下:

redis-benchmark [option][option value]

以下例項同時執行 10000 個請求來檢測效能:

redis-benchmark -n 100000

ping_inline:141043.72requests per second

ping_bulk:142857.14requests per second

set:141442.72requests per second

get:145348.83requests per second

incr:137362.64requests per second

lpush:145348.83requests per second

lpop:146198.83requests per second

sadd:146198.83requests per second

spop:149253.73requests per second

lpush (needed to benchmark lrange):148588.42requests per second

lrange_100 (first 100elements):58411.21requests per second

lrange_300 (first 300elements):21195.42requests per second

lrange_500 (first 450elements):14539.11requests per second

lrange_600 (first 600elements):10504.20requests per second

mset (10keys):93283.58requests per second

redis 效能測試工具可選引數如下所示:

序號選項

描述預設值

1-h

指定伺服器主機名

127.0.0.1

2-p

指定伺服器端口

6379

3-s

指定伺服器 socket

4-c

指定併發連線數505

-n

指定請求數

10000

6-d

以位元組的形式指定 set/get 值的資料大小27

-k

1=keep alive 0=reconnect18

-r

set/get/incr 使用隨機 key, sadd 使用隨機值

9-p

通過管道傳輸請求110

-q

強制退出 redis。僅顯示 query/sec 值

11--csv

以 csv 格式輸出

12-l

生成迴圈,永久執行測試

13-t

僅執行以逗號分隔的測試命令列表。

14-i

idle 模式。僅開啟 n 個 idle 連線並等待。

以下例項我們使用了多個引數來測試 redis 效能:

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

set:146198.83requests per second

lpush:145560.41requests per second

以上例項中主機為 127.0.0.1,埠號為 6379,執行的命令為 set,lpush,請求數為 10000,通過 -q 引數讓結果只顯示每秒執行的請求數。

redis效能測試

redis 效能測試 1 測試機器 1顆4核 intel r xeon tm cpu 3.00ghz cpu 2g記憶體 測試前伺服器負載為 2 測試方式 php模組安裝redis下的php插入,提取測試。3 string 測試 測試 redis new redis redis connect 12...

Redis 效能測試

redis 效能測試是通過同時執行多個命令實現的。redis 效能測試的基本命令如下 redis benchmark option option value 以下例項同時執行 10000 個請求來檢測效能 redis benchmark n 10000 ping inline 141043.72 r...

Redis 效能測試

redis 效能測試是通過同一時候執行多個命令實現的。redis 效能測試的基本命令例如以下 redis benchmark option option value 下面例項同一時候執行 10000 個請求來檢測效能 redis benchmark n 10000 ping inline 14104...