paillechat/apcu-simple-cache

1.3 2017-08-24 13:26 UTC

This package is not auto-updated.

Last update: 2024-09-20 17:30:02 UTC


README

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

基于 apcu 扩展的 PSR-16 Simple Cache 实现。

安装

composer require paillechat/apcu-simple-cache

使用

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

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