lucid/cache

v0.0.1 2015-12-22 10:09 UTC

This package is not auto-updated.

Last update: 2024-09-24 18:48:35 UTC


README

Author Source Code Software License

Build Status Code Coverage HHVM

需求

php >= 5.6

安装

$ composer require lucid/cache

使用存储

<?php

use Lucid\Cache\Storage;
use Lucid\Cache\Client\Filesystem;

$cache = new Storate(new Filesystem('app/caches'));

$cache->set('id', 'value');
$cache->get('id'); // 'value'

包含的客户端

  • APCu
  • 文件系统
  • 内存中
  • Redis
  • Memcached
  • Memcache (php < 7.0)
  • XCache