Yampee Redis is a PHP library to manage a connection with Redis easily.
An example ?
<?php
$redis = new Yampee_Redis_Client();
$redis->set('key', 'value');
if ($redis->has('key')) {
$redis->get('key');
}
See the demo file to discover all the possibilites (demo/index.php
).
Redis is an open source, advanced key-value store. It is often referred to as a data structure server since keys can contain strings, hashes, lists, sets and sorted sets.
This open source storage system is very useful for cache or very quick storage needs.
The documentation is to be found in the doc/
directory.
Yampee Redis is licensed under the MIT license (see LICENSE file). The Yampee Redis library is developed and maintained by the Titouan Galopin.