Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paulscott56/hipsterdb
A simple BSON based key value store where keys are strings and values are BSON documents (translated from JSON)
https://github.com/paulscott56/hipsterdb
Last synced: 2 days ago
JSON representation
A simple BSON based key value store where keys are strings and values are BSON documents (translated from JSON)
- Host: GitHub
- URL: https://github.com/paulscott56/hipsterdb
- Owner: paulscott56
- License: gpl-2.0
- Created: 2013-11-12T12:27:48.000Z (about 11 years ago)
- Default Branch: master
- Last Pushed: 2013-11-12T12:36:40.000Z (about 11 years ago)
- Last Synced: 2023-03-22T12:49:32.364Z (almost 2 years ago)
- Language: Java
- Size: 113 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
HipsterDB
=========A simple BSON based key value store where keys are strings and values are BSON documents (translated from JSON)
Usage
========
Start the server
Open up a telnet session to localhost on port 11256
PUT something into the store with the format: command/key/value
put/1/{"name":"Paul", "surname":"Scott"}GET the data back (format command/key):
get/1Alternatively, run the local server and use in your Java projects!