go1/kv

This package's canonical repository appears to be gone and the package has been frozen as a result. Email us for help if needed.

Maintainers

Details

github.com/go1com/kv

Source

Issues

Installs: 27 938

Dependents: 1

Suggesters: 0

Security: 0

Stars: 2

Watchers: 8

Forks: 0

Open Issues: 0

pkg:composer/go1/kv

v0.2 2016-09-30 03:38 UTC

This package is auto-updated.

Last update: 2024-07-14 01:53:02 UTC


README

$db = DriverManager::getConnection(['url' => 'sqlite://sqlite::memory:']);
$kv = new go1\kv\KV($db);

$kv->write('key', ['some' => 'value);
if ($kv->has('key')) {
    $kv->fetch('key');
    $kv->delete('key');
}