json key value store
v1.0.0
A simple JSON based key value store.
This json key value store package can be easily installed using Composer. Just run the following command from the root of your project.
composer require divineomega/json-key-value-store
If you have never used the Composer dependency manager before, head to the Composer website for more information on how to get started.
Using the json key value store is designed to be super simple.
Here is a basic usage example:
use DivineOmegaJsonKeyValueStoreJsonKeyValueStore;
$store = new JsonKeyValueStore('store.json.gz');
$store->set('key1', 'value123');
$store->set('key2', 'value456');
$store->delete('key2');
$value = $store->get('key1');
// $value = 'value123'