Are they any decent on-disk implementations of Java's Map?

前端 未结 6 1471
天涯浪人
天涯浪人 2020-12-03 08:27

I\'m looking for an on-disk implementation of java.util.Map. Nothing too fancy, just something that I can point at a directory or file and have it store its co

6条回答
  •  有刺的猬
    2020-12-03 08:42

    Chronicle Map is a modern and the fastest solution to this problem. It implements ConcurrentMap interface and persists the data to disk (under the hood, it is done by mapping Chronicle Map's memory to a file).

提交回复
热议问题