Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/kramer99/memstore

Concurrent in-memory key value store, that can be serialized to disk and offers journaling.
https://github.com/kramer99/memstore

Last synced: 6 days ago
JSON representation

Concurrent in-memory key value store, that can be serialized to disk and offers journaling.

Awesome Lists containing this project

README

        

memstore
========

Concurrent in-memory key value store, that can be serialized to disk and offers journaling.

To put something in the store and serialize it:

Memstore store = new Memstore("directory/data");
store.put(someKey, someValue);
store.serialize();

Then to get it out again:

Object loaded = memstore.get(key);