previewtechs / simple-cache
基于 PSR-16 的 PHP 缓存库。
v1.1
2017-11-13 19:35 UTC
Requires
- psr/cache: ~1.0
- psr/simple-cache: *
Provides
This package is auto-updated.
Last update: 2024-09-06 09:32:57 UTC
README
由 PSR-16 简单缓存接口构建的 PHP 缓存库
您可以通过查找提供 psr/simple-cache-implementation 虚拟包的包来找到规范实现。
安装
- 运行以下命令:
composer require previewtechs/simple-cache:dev-master
用法
- 在您的根目录中创建一个名为
test.php
的文件,并添加以下代码
<?php require "vendor/autoload.php"; $cache = new Memcached(); $cache->addServers([ ['localhost', 11211, 1] ]); $cache = new Previewtechs\SimpleCache\Memcached($cache); // 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