pfinal / 缓存
php缓存、psr simple-cache、memcache redis file array
v1.2.1
2018-01-16 03:49 UTC
Requires
- php: >=5.3
- psr/simple-cache: ^1.0
Requires (Dev)
- phpunit/phpunit: ^5.0
- predis/predis: ^1.0
This package is auto-updated.
Last update: 2024-09-13 16:48:36 UTC
README
缓存
PHP交流 QQ 群:16455997
环境要求:PHP >= 5.3
使用 composer
composer require pfinal/cache
示例
<?php require 'vendor/autoload.php'; $cache = new \PFinal\Cache\FileCache(); $cache->set('name', 'Ethan', 60); //缓存60秒 echo $cache->get('name');
使用Redis缓存,需要
composer require predis/predis