yangguanghui/filesystem-adapter

使用文件系统的PSR-6缓存实现。此实现支持标签

1.2.1 2022-04-08 03:34 UTC

This package is auto-updated.

Last update: 2024-09-08 08:59:44 UTC


README

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

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

此实现使用优秀的Flysystem

安装

composer require cache/filesystem-adapter

使用

要创建FilesystemCachePool的实例,您需要配置一个Filesystem及其适配器。

use League\Flysystem\Adapter\Local;
use League\Flysystem\Filesystem;
use Cache\Adapter\Filesystem\FilesystemCachePool;

$filesystemAdapter = new Local(__DIR__.'/');
$filesystem        = new Filesystem($filesystemAdapter);

$pool = new FilesystemCachePool($filesystem);

您可以通过setFolder设置器更改缓存池将写入的文件夹

$pool = new FilesystemCachePool($filesystem);
$pool->setFolder('path/to/cache');

贡献

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