Java: large persistent hash structure?

前端 未结 5 2219
[愿得一人]
[愿得一人] 2021-01-05 08:23

I\'m looking for a persistent hash structure in java, a simple key-value store, where key is a unique string and value is an int. The value of a key is to be incremented eac

5条回答
  •  太阳男子
    2021-01-05 08:27

    Use a database not a hash. Even for a database 500M rows is getting quite large. How many updates are you expecting per second?

提交回复
热议问题