java disc based hashmap

前端 未结 5 619
南旧
南旧 2020-12-11 07:28

I\'m working on a web crawler (please don\'t suggest an existing one, its not an option). I have it working the way it is expected to. My only issue is that currently I\'m u

5条回答
  •  星月不相逢
    2020-12-11 07:56

    Chronicle Map is an embeddable, hash-based Java data store, persisting the data to disk (to a single file), which targets to be a drop-in replacement of ConcurrentHashMap (provides the same ConcurrentMap interface). Chronicle Map is the fastest store among similar solutions and features excellent read/write concurrency, scaling almost linearly to the number of available cores in the machine.

    Disclaimer: I'm the developer of Chronicle Map.

提交回复
热议问题