openxtrem / yampee-redis
OpenXtrem Yampee Redis Legacy fork
2.1.1
2024-01-09 17:48 UTC
Requires
- php: ^7.4 || ^8.1
Requires (Dev)
- openxtrem/coding-standard: ^1.0.0
- phpunit/phpunit: 9.5.*
README
What is Yampee Redis ?
Yampee Redis is a PHP library to manage a connection with Redis easily.
An example ?
<?php
use Ox\Components\Yampee\Redis\Client;
$redis = new Client();
$redis->set('key', 'value');
if ($redis->has('key')) {
$redis->get('key');
}
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.