Only ~25k RPS when running benchmark via redis-benchmark #68
Answered
by
badrishc
kamyuentse
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
badrishc
Mar 22, 2024
Replies: 1 comment
-
|
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
vazois
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
redis-benchmark
is known to be extremely heavy on the client side, as it was developed for a different tier of performance.localhost
network roundtrip time and TCP overhead. Try-P 1024
for example.Resp.benchmark
which is carefully designed to ensure client does not become the bottleneck, or if you want a third-party tool thenmemtier_benchmark
(link) is better thanredis-benchmark
.