pfinal/cache

php cache、psr simple-cache、memcache redis file array

v1.2.1 2018-01-16 03:49 UTC

This package is auto-updated.

Last update: 2024-04-13 15:50:41 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