simple cache system

3.0.2 2023-01-17 10:09 UTC

This package is auto-updated.

Last update: 2024-05-17 13:00:00 UTC


README

define const WT_CACHE_PATH for set cache folder. without WT_CACHE_PATH save to vendor directory

install

composer require traineratwot/cache

Example:

$key = ['key'];
$value = ['value'];

\Traineratwot\Cache\Cache::setCache($key,$value,600,'category/subcategory')

\Traineratwot\Cache\Cache::getCache($key,$value,600,'category/subcategory')

\Traineratwot\Cache\Cache::call($key,function($v) use ($key){
if(count($key) === 1){
	return $v
	}
	return 'noValue'
},600,'category/subcategory',$value)

\Traineratwot\Cache\Cache::autoRemove()

\Traineratwot\Cache\Cache::removeAll()