We are working on a project, that will be distributed using single jar file. We have a need for some key-value store with following properties:
- Embeddable into our jar file, so no additional installation.
- Can hold up to tens of millions pairs
- Memory efficient. That means less than 100M for 50M pairs
- Both keys and values are of simple types: long, int, small byte[]
- Free license for commercial use is a bonus
- We do not need concurrency, ACID or such advanced stuff.
- Amortized lookup time below 100 microseconds.
Any suggestions other than BerkelyDB or JDBM2/3?