A high performance NoSQL database supporting many data structures, an alternative to Redis.
<?php require_once('SSDB.php'); $ssdb = new SimpleSSDB('127.0.0.1', 8888); $resp = $ssdb->set('key', '123'); $resp = $ssdb->get('key'); echo $resp; // output: 123
wget --no-check-certificate https://github.com/ideawu/ssdb/archive/master.zip unzip master cd ssdb-master make # optional, install ssdb in /usr/local/ssdb sudo make install
# start master ./ssdb-server ssdb.conf # or start as daemon ./ssdb-server -d ssdb.conf
SSDB is licensed under New BSD License, a very flexible license to use.