/Redis

A full-featured Redis client for PHP 5.2. Easy to use and to extend.

Primary LanguageCSSMIT LicenseMIT

Yampee Redis: a PHP library that speaks with Redis!

What is Yampee Redis ?

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

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.

Documentation

The documentation is to be found in the doc/ directory.

About

Yampee Redis is licensed under the MIT license (see LICENSE file). The Yampee Redis library is developed and maintained by the Titouan Galopin.