Redis 效能測試
Redis 效能測試是透過同時執行多個命令來實現的。
語法
redis 效能測試的基本命令如下:
redis-benchmark [option] [option value]
實例
以下實例同時執行10000 個請求來偵測效能:
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 | |
-c | 指定並發連線數#50 | ||
#-n | 指定請求數 | 10000 | |
#6 | -d | ##以位元組的形式指定SET/GET 值的資料大小2 | |
##-k | 1=keep alive 0=reconnect | 1 | |
SET/GET/INCR 使用隨機key, SADD 使用隨機值 | #9 | ||
透過管道傳輸<numreq> 請求1 | 10 | ||
強制退出redis。僅顯示query/sec 值 | 11 | ||
以CSV 格式輸出 | 12 | ||
產生循環,永久執行測試 | 13 | ||
只執行以逗號分隔的測試命令列表。 | 14 |
Idle 模式。僅開啟 N 個 idle 連線並等待。
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,執行的指令為set,lpush,請求數為10000,透過-q 參數讓結果只顯示每秒執行的請求數。 ##########