NoSQLite – simple key => value store
NoSQLite is simple key-value store using SQLite as raw data store. Mainly for small project where MySQL is too heavy and files are too ugly.
Get composer and add following lines to composer.json
:
{
"require": {
"mthenw/nosqlite": "*@stable"
}
}
Create stores’ manager (file will be created if not exists)
$nsql = new NoSQLite\NoSQLite('mydb.sqlite');
Get store
$store = $nsql->getStore('movies');
Set value in store (key and value max length are limited by SQLite TEXT datatype)
$store->set(uniqid(), json_encode(array('title' => 'Good Will Hunting', 'director' => 'Gus Van Sant')));
Get value from store (will be created if not exists)
$store->get('3452345');
Get all values
$store->getAll();
Delete all values
$store->deleteAll();
Iterate through store (Store implements Iterator interface)
foreach($store as $key => $value)
...
Get number of values in store (Store implements Countable interface)
count($store);
Tests are written in PHPUnit which is required as a dev package in composer.json
. For running test use
./vendor/bin/phpunit
or simply
make test