萨拉曼 / json-filesystem-cache
基于PSR-16构建的PHP JSON文件系统缓存库。
1.0.0
2019-03-31 21:25 UTC
Requires
- ext-json: *
- psr/simple-cache: *
Provides
This package is auto-updated.
Last update: 2024-09-04 13:25:00 UTC
README
v1.0.0
基于PSR-16简单缓存接口构建的PHP缓存库
您可以通过查找提供psr/simple-cache-implementation
虚拟包的包来找到该规范的实现。
安装
此库通过Composer安装。要安装,
- 只需将以下内容添加到您的
composer.json
文件中:"sarahman/json-filesystem-cache": "^1.0"
或者
- 运行此命令
$ composer require sarahman/sarahman/json-filesystem-cache
用法
- 在您的根目录中创建一个名为
test.php
的文件,并添加以下代码
<?php require "vendor/autoload.php"; $cache = new Sarahman\SimpleCache\JSONFileSystemCache(); // 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
。
文档
psr/simple-cache-implementation
支持
如果您对此包有任何一般性问题,请通过Gmail联系我。
如果您认为您发现了一个问题,请使用GitHub问题跟踪器报告它,或者更好的是,分叉存储库并提交一个pull request。
如果您使用此包,我很乐意听听您的想法。谢谢!