jiaweixs / simplecache
A PHP Simple Cache Base on File.
Installs: 2 680
Dependents: 2
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 4
Open Issues: 0
Requires
- php: ^5.5.9 || ^7.0
This package is auto-updated.
Last update: 2024-10-29 04:47:45 UTC
README
Installation
//install by composer
composer require jiaweixs/simplecache
//or clone from github
git clone git@github.com:kulokai/simplecache.git
Usage
//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');