Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 1.11 KB

README.md

File metadata and controls

24 lines (18 loc) · 1.11 KB

Apcu simple cache

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');