C++ in-memory Key-Value stores

前端 未结 7 1210
猫巷女王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:23

    A hash map (also called unordered map) is the best bet for that many pairs. You can find an implementation in Boost and TR1.

    Edit: Some people have questioned the size- if he's got, say, a 64bit server, there's plenty of space for 100million kv pairs.

提交回复
热议问题