jiaweixs/simplecache

基于文件的 PHP 简单缓存。

1.2 2017-08-24 06:23 UTC

This package is auto-updated.

Last update: 2024-09-29 04:37:08 UTC


README

安装

//install by composer
composer require jiaweixs/simplecache
  
//or clone from github
git clone git@github.com:kulokai/simplecache.git

使用

//init the tool
SimpleCache::init('.../path/to/cache');
  
//init the tool and set default expire time.
SimpleCache::init('.../path/to/cache',600);
//set cache
$isSuccess = SimpleCache::set('key','hello world');
  
//set cache and set expire time for the 'key'.
$isSuccess = SimpleCache::set('key','hello world',600);
//get cache
$value = SimpleCache::get('key');
  
//get cache and set default value for the 'key'.
$value = SimpleCache::get('key','default value');