blablacar/memcached-client

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

BlaBlarCar Memcached client

v1.1.0 2015-03-09 13:45 UTC

This package is not auto-updated.

Last update: 2021-01-04 08:29:45 UTC


README

Build Status

This library provides a simple Memcached connection wrapper.

Installation

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

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

Protip: you should browse the blablacar/memcached-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\Memcached\Client();
$client->addServer('127.0.0.1', 11211);
$client->set('foobar', 42); // Return 1

License

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