I need to process a high amount of incoming datasets. The data is that simple I can abstract it into a datastructure like
HashMap<String, DataClass>
Someone knowing a Database that is suitable for the follwing requirements:
- High performance fetching of the associated value-object by given key
- Automatic persistence to hard drive (on insert/update)
- Not affected by the GBC through program life cycle.
- Not required but cool if so, lightweight
I searched for some in-memory solutions like apache ignite, but can't decide which to take.