divineomega/json-key-value-store

A simple JSON based key value store

Fund package maintenance!
DivineOmega

v1.0.0 2018-05-04 23:04 UTC

This package is auto-updated.

Last update: 2024-03-24 22:22:56 UTC


README

Build Status Coverage Status StyleCI

A simple JSON based key value store.

Installation

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.

Usage

Using the JSON Key Value Store is designed to be super simple.

Here is a basic usage example:

use DivineOmega\JsonKeyValueStore\JsonKeyValueStore;

$store = new JsonKeyValueStore('store.json.gz');

$store->set('key1', 'value123');
$store->set('key2', 'value456');
$store->delete('key2');

$value = $store->get('key1');

// $value = 'value123'