pfinal / cache
php cache、psr simple-cache、memcache redis file array
Installs: 3 997
Dependents: 2
Suggesters: 0
Security: 0
Stars: 4
Watchers: 2
Forks: 0
Open Issues: 0
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-11-13 17:10:10 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