cache/illuminate-adapter

使用 Illuminate 的 PSR-6 缓存实现。此实现支持标签

0.4.0 2022-01-15 15:47 UTC

This package is auto-updated.

Last update: 2024-09-17 14:44:27 UTC


README

Gitter Latest Stable Version codecov.io Total Downloads Monthly Downloads Software License

这是一个使用 Illuminate 缓存的 PSR-6 缓存实现。它是 PHP Cache 组织的一部分。有关标签和层次结构支持等功能的信息,请阅读 www.php-cache.com 上的共享文档。

这是一个 PSR-6 到 Illuminate 的桥梁。

安装

composer require cache/illuminate-adapter

使用

use Illuminate\Cache\ArrayStore;
use Cache\Adapter\Illuminate\IlluminateCachePool;

// Create an instance of an Illuminate's Store
$store = new ArrayStore();

// Wrap the Illuminate's store with the PSR-6 adapter
$pool = new IlluminateCachePool($store);

贡献

欢迎贡献!请向 主仓库 发送拉取请求,或在任何 问题跟踪器 上报告您发现的问题。