blablacar / memcached-client
BlaBlarCar Memcached client
Installs: 86 719
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 72
Forks: 1
Open Issues: 0
Requires
- php: >=5.3.3
Requires (Dev)
- fabpot/php-cs-fixer: ~1.5
- phpunit/phpunit: ~4.5
This package is not auto-updated.
Last update: 2021-01-04 08:29:45 UTC
README
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.