blablacar/redis-client

This package is abandoned and no longer maintained. No replacement package was suggested.

BlaBlarCar Redis client

v1.0.15 2023-02-14 13:56 UTC

README

Build Status

This library provides a simple Redis connection wrapper.

Installation

The recommended way to install this library is through Composer. Require the blablacar/redis-client package into your composer.json file:

{
    "require": {
        "blablacar/redis-client": "@stable"
    }
}

Protip: you should browse the blablacar/redis-client page to choose a stable version to use, avoid the @stable meta constraint.

Usage

Create a Client and you're done!

$client = new \Blablacar\Redis\Client('127.0.0.1', 6379); // Default values
$client->set('foobar', 42); // Return 1

For more information about Redis extension see the nicolasff/phpredis.

License

Blablacar Redis client is released under the MIT License. See the bundled LICENSE file for details.