
redis-benchmark
List of commands for redis-benchmark:
-
redis-benchmark:tldr:5ce19 redis-benchmark: Run with a specific script.$ redis-benchmark -n ${100000} script load "${redis-call('set', 'foo', 'bar')}"try on your machineexplain this command
-
redis-benchmark:tldr:86c3d redis-benchmark: Run benchmark [q]uietly and only show query per seconds result.$ redis-benchmark -qtry on your machineexplain this command
-
redis-benchmark:tldr:9581b redis-benchmark: Run full benchmark.$ redis-benchmarktry on your machineexplain this command
-
redis-benchmark:tldr:9943b redis-benchmark: Run benchmark by using a [P]ipelining of 16 commands.$ redis-benchmark -n ${1000000} -t ${set,get} -P ${16}try on your machineexplain this command
-
redis-benchmark:tldr:a5aa6 redis-benchmark: Run a subset of tests with default 100000 requests.$ redis-benchmark -h ${host} -p ${port} -t ${set,lpush} -n ${100000}try on your machineexplain this command
-
redis-benchmark:tldr:a929c redis-benchmark: Run benchmark by using 100000 [r]andom keys.$ redis-benchmark -t ${set} -r ${100000}try on your machineexplain this command
-
redis-benchmark:tldr:eef77 redis-benchmark: Run benchmark on a specific Redis server.$ redis-benchmark -h ${host} -p ${port} -a ${password}try on your machineexplain this command