The current state of the projects uses an atom for simulating a datastore.
We want to implement a <key,value> store but that is durable across service restarts. It seems that an easy way is to use MVStore from H2 database. http://www.h2database.com/html/mvstore.html
It's embedded
Provides the functionality we need now
We can use the OffHeapStore to handle large amount of data
This solution needs to be revisited when we have a Datastore Service
The current state of the projects uses an
atom
for simulating a datastore.We want to implement a
<key,value>
store but that is durable across service restarts. It seems that an easy way is to useMVStore
from H2 database. http://www.h2database.com/html/mvstore.htmlOffHeapStore
to handle large amount of dataThis solution needs to be revisited when we have a Datastore Service