I have a requirement to deal with 10 million objects. There can be 10,000 updates for objects per second. I am not sure it is good to store all of these objects in memory (JVM as this is a java application). But as I need performance (10,000 updates per second) we need to use in memory somehow.
So I feel hybrid approach is the best thing. Like MapDB, MVStore ... Can someone help me to find best option?
If I can query that store with SQL that is also an advantage for me.
Thanks!