sy/cache

简单的缓存库

1.0.4 2024-05-29 20:03 UTC

This package is auto-updated.

Last update: 2024-08-29 20:27:37 UTC


README

简单的缓存库。

缓存数据通过 var_export 保存在文件系统中,加载缓存时使用 include。

主要用于缓存数组和对象。与 APCu 相比,存储字符串时没有性能优势。

键支持字符 /(不完全符合 PSR-16 标准)且不支持字符 *

空值不会存储在缓存中。

暂不支持 TTL(待做)。

安装

使用以下命令安装最新版本:

$ composer require sy/cache

基本用法

<?php

use Sy\Cache\SimpleCache;

$cache = new SimpleCache(__DIR__);

$cache->set('array', ['one', 'two', 'three']);

$array = $cache->get('cache');