C++ in-memory Key-Value stores

前端 未结 7 1187
猫巷女王i
猫巷女王i 2021-02-06 13:47

I\'m looking for suggestions regarding in-memory key-value store engines or libraries, that have C++ interfaces or that are written in C++.

I\'m looking for solutions t

7条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-06 14:26

    If you really need to store such amount of pairs in memory consider this Sparse Hash. It has special implementation which is optimized for low memory consumption.

提交回复
热议问题