Java On-Memory Efficient Key-Value Store

前端 未结 6 1742
不思量自难忘°
不思量自难忘° 2020-12-08 23:26

I have store 111 million key-value pairs (one key can have multiple values - maximum 2/3) whose key are 50 bit Integers and values are 32 bit (maximum) Integers. Now, my req

6条回答
  •  情话喂你
    2020-12-09 00:08

    Is there any Java library which satisfies my all those needs properly.

    AFAIK no. Or at least, not one that minimizes the memory footprint.

    However, it should be easy write a custom map class that is specialized to these requirements.

提交回复
热议问题