dev-master
9999999-dev https://github.com/davidonium/simple-memcached
MIT
The Requires
The Development Requires
by David Hernando Jurado
cache memcached psr16
Wallogit.com
2017 © Pedro Peláez
A simple implementation of psr-16 simple-cache using the memcached extension., (*1)
For now the you can look at the tests for examples., (*2)
This is my first open source project, I will gladly accept any advice you can give me :)., (*3)
composer require davidonium/simple-memcached
Create a test that looks like this:, (*4)
$memcached = new \Memcached();
$memcached->addServer('127.0.0.1', '11211');
$cache = new \SimpleMemcached\SimpleMemcached($memcached);
$cache->set('lorem', 'ipsum');
$value = $cache->get('lorem'); // ipsum
MIT
cache memcached psr16