Redis 效能測試

來源:互聯網
上載者:User

Redis 效能測試

Redis 效能測試是通過同時執行多個命令實現的。Redis效能測試主要是通過src檔案夾下的redis-benchmark來實現(Linux系統下)

文法

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

  1. redis-benchmark [option] [option value]
執行個體

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

  1. redis-benchmark -n 100000
  2.  
  3. PING_INLINE: 141043.72 requests per second
  4. PING_BULK: 142857.14 requests per second
  5. SET: 141442.72 requests per second
  6. GET: 145348.83 requests per second
  7. INCR: 137362.64 requests per second
  8. LPUSH: 145348.83 requests per second
  9. LPOP: 146198.83 requests per second
  10. SADD: 146198.83 requests per second
  11. SPOP: 149253.73 requests per second
  12. LPUSH (needed to benchmark LRANGE): 148588.42 requests per second
  13. LRANGE_100 (first 100 elements): 58411.21 requests per second
  14. LRANGE_300 (first 300 elements): 21195.42 requests per second
  15. LRANGE_500 (first 450 elements): 14539.11 requests per second
  16. LRANGE_600 (first 600 elements): 10504.20 requests per second
  17. 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 -k 1=keep alive 0=reconnect 1
8 -r SET/GET/INCR 使用隨機 key, SADD 使用隨機值  
9 -P 通過管道傳輸 <numreq> 請求 1
10 -q 強制退出 redis。僅顯示 query/sec 值  
11 --csv 以 CSV 格式輸出  
12 -l 產生迴圈,永久執行測試  
13 -t 僅運行以逗號分隔的測試命令列表。  
14 -I Idle 模式。僅開啟 N 個 idle 串連並等待。  
執行個體

以下執行個體我們使用了多個參數來測試 redis 效能:

  1. redis-benchmark -h 127.0.0.1 -p 6379 -t set,lpush -n 100000 -q
  2.  
  3. SET: 146198.83 requests per second
  4. LPUSH: 145560.41 requests per second

以上執行個體中主機為 127.0.0.1,連接埠號碼為 6379,執行的命令為 set,lpush,請求數為 10000,通過 -q 參數讓結果只顯示每秒執行的請求數。

下面關於Redis的文章您也可能喜歡,不妨參考下:

Ubuntu 14.04下Redis安裝及簡單測試

Redis主從複製基本配置

Redis叢集明細文檔

Ubuntu 12.10下安裝Redis(圖文詳解)+ Jedis串連Redis

Redis系列-安裝部署維護篇

CentOS 6.3安裝Redis

Redis安裝部署學習筆記

Redis設定檔redis.conf 詳解

Redis 的詳細介紹:請點這裡
Redis 的:請點這裡

本文永久更新連結地址:

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.