From the article:
According to benchmarks, writes to SSDB are slightly slower but reads are actually faster than Redis!😲
How a disk based solution can be faster than Redis? Here is the link to the benchmarks.
It looks that this is not read latency, but read operation per second. I think since SSDB is multithreaded as opposed to Redis, allows it to be faster even though it’s using a disk.
NVMe SSD could also help benchmarks.
That actually explains why! Thank you.
From the article:
How a disk based solution can be faster than Redis? Here is the link to the benchmarks.
It looks that this is not read latency, but read operation per second. I think since SSDB is multithreaded as opposed to Redis, allows it to be faster even though it’s using a disk.
NVMe SSD could also help benchmarks.
That actually explains why! Thank you.