Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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 driven web application. Looking for a quick set up and easy ajax interaction. Any tips would be greatly appreciated!

like image 713
Eelke Avatar asked Feb 24 '23 11:02

Eelke


2 Answers

You should check out couch db:

http://couchdb.apache.org/docs/intro.html

Sounds about what you are looking for.

like image 70
feathj Avatar answered Mar 08 '23 09:03

feathj


Also look at MongoDb. Here is the RESTful api which returns JSON.

like image 40
Amir Raminfar Avatar answered Mar 08 '23 07:03

Amir Raminfar