cache/memcache-adapter

A PSR-6 cache implementation using memcache. This implementation supports tags

Maintainers

Package info

github.com/php-cache/memcache-adapter

Homepage

pkg:composer/cache/memcache-adapter

Transparency log

Statistics

Installs: 361 162

Dependents: 5

Suggesters: 10

Stars: 6

2.0.2 2026-08-18 20:48 UTC

This package is auto-updated.

Last update: 2026-08-18 20:59:01 UTC


README

Latest Stable Version Coverage Software License

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:^2.0

Usage

use Cache\Adapter\Memcache\MemcacheCachePool;

$client = new Memcache();
$client->connect('127.0.0.1', 11211);

$pool = new MemcacheCachePool($client);

Contributing

Send pull requests to the main repository. Report issues on the GitHub issue tracker.