JaydenOK / redis-client

A simple Redis Client

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Blablacar Redis Wrapper

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.

About

A simple Redis Client

License:MIT License


Languages

Language:PHP 100.0%