I'm looking for a very(!) simple (server-side) key/value database which preferably has a REST API. It's used to cache some values in a javascript driven web application. Looking for a quick set up and easy ajax interaction. Any tips would be greatly appreciated!
I'm looking for a very(!) simple (server-side) key/value database which preferably has a REST API. It's used to cache some values in a javascript driven web application. Looking for a quick set up and easy ajax interaction. Any tips would be greatly appreciated!
Share Improve this question edited Jul 26, 2011 at 18:45 Eelke asked Jul 26, 2011 at 18:39 EelkeEelke 2,3271 gold badge22 silver badges26 bronze badges 1- A server-side DB, easily accessible via JS – Eelke Commented Jul 26, 2011 at 18:45
4 Answers
Reset to default 4You should check out couch db:
http://couchdb.apache/docs/intro.html
Sounds about what you are looking for.
Also look at MongoDb. Here is the RESTful api which returns JSON.
Maybe CouchDB?
http://www.youtube./watch?v=Bfje5csISQ8
Probably you've already solved your needs, but I'm posting here to help somebody else.
I needed something like that, so I've built this: KVStore.io, a simple key/value API based storage service.
You can find the API docs and easy ways to consume them here: https://www.mashape./lordkada/kvstore
Please note, it's still under heavy development (it's an alpha version...) but I'm using it to store some stuffs (like website marketing forms) and it's working nicely...