netzdenke / phpmcached
PHP Memcached adapter with cache groups
v1.1.0
2015-09-21 12:57 UTC
Requires
- php: >=5.3.0
This package is not auto-updated.
Last update: 2024-10-26 16:52:16 UTC
README
PHPMCached is a PHP Memcached adapter with support for cache groups.
Requirements
- PHP 5.3 or later
- PHP Memcached extension
Usage
Install the latest version with composer require netzdenke/phpmcached
<?php $cache = \PHPMCached\PHPMCached::getInstance('application_name'); $cache->addServer('127.0.0.1'); $cacheKey = $cache->getCacheKey('foo'); $cache->set($cacheKey, 'value', 'cache_group', \PHPMCached\PHPMCached::EXPIRATION_HOUR); $value = $cache->get($cacheKey); $cache->deleteCacheGroup('cache_group');
License
PHPMCached is licensed under the MIT License - see the LICENSE
file for details