key-value store suggestion

后端 未结 6 871

I need a very basic key-value store for java. I started with a HashMap but it seems that HashMap is somewhat space inefficient (I\'m storing ~20 million records, and seems t

6条回答
  •  时光取名叫无心
    2020-12-15 10:20

    BabuDB

    BabuDB is an embedded non-relational database system. Its lean and simple design allows it to persistently store large amounts of key-value pairs without the overhead and complexity of similar approaches such as BerkeleyDB.

    License: New BSD license, Language: Java

    JDBM2

    JDBM2 provides HashMap and TreeMap which are backed by disk storage.

    License: Apache License 2.0, Language: Java

    Banana DB

    Banana DB is a self-contained key/value pair database implemented in Java.

    License: Apache License 2.0, Language: Java


    I've tried BabuDB and JDBM2 and they work fine. BabuDB is a little bit more difficult to set up, but potentially delivers higher performance than JDBM2.

    These all all databases, which allow to persist data on disk. There are also solutions to hold a large map in memory (ehcache, hazelcast, ...).

提交回复
热议问题