kumatch/keystore

A simple key-base value storage.

0.3.0 2014-01-17 08:09 UTC

This package is not auto-updated.

Last update: 2024-03-11 22:13:16 UTC


README

A simple key-base value storage.

Build Status

Install

Add "kumatch/keystore" as a dependency in your project's composer.json file.

{
  "require": {
    "kumatch/keystore": "*"
  }
}

And install your dependencies.

$ composer install

Drivers

Methods

use Kumatch\KeyStore\Storage;
use Kumatch\KeyStore\Filesystem\Driver;  // driver

__construct ($driver)

Create a storage instance by storage driver.

$driver = new Driver("/tmp");
$storage = new Storage($driver);

write ($key, $value)

$key = "foo/bar";
$value = "Hello, world.";

$storage->write($key, $value);

append ($key, $value)

$key = "foo/bar";
$value = "Hello, world.";

$storage->append($key, $value);

read ($key)

$key = "foo/bar";
$value = $storage->read($key);
// returns a value of a key
// if key is not exists, returns null

exists ($key)

$key = "foo/bar";
$isExists = $storage->exists($key);
// returns boolean

remove ($key)

$key = "foo/bar";
$storage->remove($key);

import ($key, $filename)

$key = "foo/bar";
$filename = "/path/to/input.jpg";

$storage->import($key, $filename);

export ($key, $filename)

$key = "foo/bar";
$filename = "/path/to/output.jpg";

$storage->export($key, $filename);
// outputs a value to file path.

copy ($srcKey, $dstKey)

rename ($srcKey, $dstKey)

$src = "foo/bar";
$dst = "path/to/destination";

$storage->copy($src, $dst);

License

Licensed under the MIT License.

Copyright (c) 2013 Yosuke Kumakura

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.