>Redis, which I'd like to call the "original" key/value store My old friend Memcached just came by and want to say Hello. He is still alive and kicking. Netflix has been treating him well.
Redis vs. KeyDB vs. Dragonfly vs. Skytable
31–40 of 56 posts
Re: Redis vs. KeyDB vs. Dragonfly vs. Skytable
#32Earlier quoted context omitted.
Could you explain why?
Both are small projects by small teams (though I don't know how small Redis team is now). They have insane performance characteristics with rather small footprints and a wealth of functionality.
The key problem is building a firewall so that such people can focus. The *organizational* problems there are hard. If you have a firewall around five people, you can't tell if:
- They're sitting at home drinking beer and watching cat videos
- Are developing the world's fastest database
Which leads to meetings, presentations, funding proposals, and so on. Which, in turn, leads to the need for large teams.
Re: Redis vs. KeyDB vs. Dragonfly vs. Skytable
#33> Dragonfly expects you to have the latest hardware[6] and the latest kernel[7] on all your servers. I find this outrageous because not all servers run 5.10 and a majority of them are still using long-running branches on 4.x. I don't see anything wrong with that. Either your kv store is performing OK or can be scaled using the usual methods and it's not holding you back... or you actually critically depend on the fas…
Re: Redis vs. KeyDB vs. Dragonfly vs. Skytable
#34I just want to cache some objects and avoid hammer the DB on every request :´(
Re: Redis vs. KeyDB vs. Dragonfly vs. Skytable
#35> Dragonfly expects you to have the latest hardware[6] and the latest kernel[7] on all your servers. I find this outrageous because not all servers run 5.10 I don’t understand why this is “outrageous”? There’s performance features and better hardware utilisation in newer kernels? If you want the performance offered by the applications built on top of these, then arguably you should be prepared to run the hardware and…
Re: Redis vs. KeyDB vs. Dragonfly vs. Skytable
#36> I was NOT able to reproduce the 25X speed that Dragonfly claims The Dragonfly benchmark which showed 25x faster was run on c6gn.16xlarge which has 64 vCPU. The m5.4xlarge you used "only" has 16 vCPU. Since Dragonfly is achieving its performance by using multiple threads it's not weird that you weren't able to replicate its performance gain. In my opinion, when it comes to these types of multi-threaded benchmarks it…
Re: Redis vs. KeyDB vs. Dragonfly vs. Skytable
#37I'm trying to get my workplace to accept Redis for simple caching but they're not open to the idea. Instead they're all in Hazelcast but real stingy about who gets to use it and for how much memory. I just want to cache some objects and avoid hammer the DB on every request :´(
Re: Redis vs. KeyDB vs. Dragonfly vs. Skytable
#38> I was NOT able to reproduce the 25X speed that Dragonfly claims The Dragonfly benchmark which showed 25x faster was run on c6gn.16xlarge which has 64 vCPU. The m5.4xlarge you used "only" has 16 vCPU. Since Dragonfly is achieving its performance by using multiple threads it's not weird that you weren't able to replicate its performance gain. In my opinion, when it comes to these types of multi-threaded benchmarks it…
Re: Redis vs. KeyDB vs. Dragonfly vs. Skytable
#39Re: Redis vs. KeyDB vs. Dragonfly vs. Skytable
#40> I was NOT able to reproduce the 25X speed that Dragonfly claims The Dragonfly benchmark which showed 25x faster was run on c6gn.16xlarge which has 64 vCPU. The m5.4xlarge you used "only" has 16 vCPU. Since Dragonfly is achieving its performance by using multiple threads it's not weird that you weren't able to replicate its performance gain. In my opinion, when it comes to these types of multi-threaded benchmarks it…
If you start with "baseline, one-process performance", you're likely to mislead yourself, since no modern server has fewer than eight, and a single-thread benchmark can omit important locks. A modern baseline is probably two to four cores, even if you're running multiple services on one machine.