Simple key/value database
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 dri开发者_运维问答ven web application. Looking for a quick set up and easy ajax interaction. Any tips would be greatly appreciated!
You should check out couch db:
http://couchdb.apache.org/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.com/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.com/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...
精彩评论