cache / memcache-adapter
A PSR-6 cache implementation using memcache. This implementation supports tags
3.0.0
2026-08-20 01:59 UTC
Requires
- php: ^8.2
- cache/adapter-common: ^3.0
- psr/cache: ^3.0
- psr/simple-cache: ^2.0 || ^3.0
Requires (Dev)
- cache/integration-tests: ^1.0@dev
- phpunit/phpunit: ^11.5
Suggests
- ext-memcache: The extension required to use this pool.
Provides
- psr/cache-implementation: 3.0
- psr/simple-cache-implementation: 2.0 || 3.0
README
This package provides PSR-6 and PSR-16 cache implementations backed by the Memcache extension. The pool also supports tags.
Installation
Install the package and enable the Memcache extension:
composer require cache/memcache-adapter:^3.0
Usage
use Cache\Adapter\Memcache\MemcacheCachePool; $client = new Memcache(); $client->connect('127.0.0.1', 11211); $pool = new MemcacheCachePool($client);
Upgrading to version 3
Version 3 stores a generation snapshot with each tagged item and a separate marker for each tag. Version 2 workers cannot safely share this format.
Stop or drain all workers, clear Memcache, and then deploy version 3. Follow the same sequence before a rollback.
Contributing
Send pull requests to the main repository. Report issues on the GitHub issue tracker.