saturno / simple-filesystem-cache
基于PSR-16构建的PHP简单文件系统缓存库。
1.0.2
2020-08-09 05:14 UTC
This package is auto-updated.
Last update: 2024-09-09 14:09:13 UTC
README
基于PSR-16简单缓存接口构建的PHP缓存库
您可以通过查找提供psr/simple-cache-implementation虚拟包的包来实现规范。
安装
- 运行以下命令:
composer require saturno/simple-filesystem-cache
用法
- 在您的根目录中创建一个名为
test.php
的文件,并添加以下代码
<?php require "vendor/autoload.php"; $cache = new Sarahman\SimpleCache\FileSystemCache(); // the custom cache directory can be set through the parameter. // Set Cache key. $data = [ 'sample' => 'data', 'another' => 'data' ]; $cache->set('your_custom_key', $data); // Check cached key exists or not. $cache->has('your_custom_key'); // Get Cached key data. $cache->get('your_custom_key');
- 然后运行
php test.php