paillechat/apcu-simple-cache

PSR-16 apcu implementation

Installs: 125 810

Dependents: 1

Suggesters: 0

Security: 0

Stars: 8

Watchers: 1

Forks: 3

Open Issues: 1

pkg:composer/paillechat/apcu-simple-cache

1.3 2017-08-24 13:26 UTC

This package is not auto-updated.

Last update: 2025-10-03 22:28:41 UTC


README

Build Status Scrutinizer Code Quality Code Coverage Latest Stable Version Total Downloads

PSR-16 Simple Cache implementation based on apcu extension.

Installation

composer require paillechat/apcu-simple-cache

Usage

$ttl = 1;
$cache = new ApcuCache();

$cache->set('foo', 'bar', $ttl);
$foo = $cache->get('foo');