1. 11
    1. 3

      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.

      1. 2

        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.

        1. 1

          That actually explains why! Thank you.