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
Use a database not a hash. Even for a database 500M rows is getting quite large. How many updates are you expecting per second?