redis-benchmarkエラー(error)ERR unknown command'redis-benchmark'パフォーマンステスト不可


この問題に遭遇したのは、マニュアルを見ている間に真剣に見ていなかったからかもしれないと思います.どうせ私はまじめに見ていない.
マニュアルに記載されている:
redisパフォーマンステストの基本コマンドは次のとおりです.
redis-benchmark [option] [option value]

これは明らかではありません.例を見てみましょう.
≪インスタンス|Instance|emdw≫
次の例では、パフォーマンスを検出するために10000個のリクエストを同時に実行します.
$ redis-benchmark -n 10000  -q

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ハッシュ
Redis hashはstringタイプのfieldとvalueのマッピングテーブルであり、hashは特にオブジェクトを格納するのに適している.
Redis内の各hashは、232−1キー値対(40億以上)を記憶することができる.
≪インスタンス|Instance|emdw≫
127.0.0.1:6379>  HMSET runoobkey name "redis tutorial" description "redis basic commands for caching" likes 20 visitors 23000
OK
127.0.0.1:6379>  HGETALL runoobkey
1) "name"
2) "redis tutorial"
3) "description"
4) "redis basic commands for caching"
5) "likes"
6) "20"
7) "visitors"
8) "23000"

これは気づいたでしょう.
関門を売ったことを許してください.実はそうです.redis-benchmarkこのコマンドはredis-cli shellのコマンドではありません.さらに通常のコマンドで実行する必要があります.shellを終了してコマンドを実行します.