can i benchmark with redis-benchmark ? #240
-
I hope i can benchmark with onboard userspace tool redis-benchmark. It is possible? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
You should be able to but redis-benchmark doesn't scale up as memtier_benchmark does so you might not be vale to see a great improvement over Redis or other platforms. Also, Redis supports more than 300 commands, cachegrand much less, so you might want to be specific in the tests you run. Said that, we are working on leveraging the unit tests to automatically generate benchmarks and the cool thing is that we will be able to cover all the scenarios where the commands can perform well (or less well) and will be possible to run these tests also on different platforms. @Valkyrie00 this is related to your recent efforts! |
Beta Was this translation helpful? Give feedback.
You should be able to but redis-benchmark doesn't scale up as memtier_benchmark does so you might not be vale to see a great improvement over Redis or other platforms.
Even with memtier_benchmark i have encountered quite some performance limitations and had to scale up to two different machines to actually saturate one.
Also, Redis supports more than 300 commands, cachegrand much less, so you might want to be specific in the tests you run.
Said that, we are working on leveraging the unit tests to automatically generate benchmarks and the cool thing is that we will be able to cover all the scenarios where the commands can perform well (or less well) and will be possible to run these tests …