Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/kramer99/memstore
- Owner: kramer99
- Created: 2014-02-26T01:33:52.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2014-02-26T03:21:17.000Z (over 10 years ago)
- Last Synced: 2023-08-15T15:37:18.905Z (over 1 year ago)
- Language: Java
- Size: 137 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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);