I have a Java object that I want to store in a local in-memory database. The Object has a One-Many FK relationship, otherwise it has 20 or so Integer/String/Enumerated fields.
I would like to avoid using a framework.
Even though the objects themselves are not very large, there will be a large amount of these objects being inserted/updated at a high frequency (20,000 updates every 5 seconds).
What is the simplest way to tackle this problem? What I would like is Java Object into this ORM layer, Java Object out out of this ORM layer (when queried for). I want to be able to Query for objects as well.
Any Tips?