Low-latency Key-Value Store for SSD

前端 未结 4 1903
梦谈多话
梦谈多话 2021-02-02 01:01

We are working on a SSD-backed key-value solution with the following properties:

  • Throughput: 10000 TPS; 50/50 puts/gets;
  • Latency: 1ms average, 99.9th pe
4条回答
  •  执念已碎
    2021-02-02 01:24

    NuDB is specifically designed for your use-case. It features O(1) insertion and lookup, no matter how big the database gets. Currently it is serving the needs of rippled with a 9TB (9 terabytes) data file. The library is open source, header-only, and requires only C++11 https://github.com/CPPAlliance/NuDB

提交回复
热议问题