/** * Shortcut to phpFastCache::setup() */ public static function setup($name, $value = '') { phpFastCache::setup($name, $value); }
/** * @return int */ protected function __setChmodAuto() { return phpFastCache::__setChmodAuto($this->config); }
/** * Extend expiry time for given key * * @param string $key cache identifier * @param int $time time to add * * @return mixed */ public function extendCacheTime($key = '', $time = 3600) { return $this->_cache->touch($key, $time); }