$ttl - $age, 'hitcount' => $hitcount, 'age' => $age, 'ttl' => $ttl ); } return false; } // ------------------------------------------------------------------------ /** * is_supported() * * Check to see if WinCache is available on this system, bail if it isn't. */ public function is_supported() { if ( ! extension_loaded('wincache') ) { log_message('error', 'The Wincache PHP extension must be loaded to use Wincache Cache.'); return FALSE; } return TRUE; } // ------------------------------------------------------------------------ } // End Class /* End of file Cache_wincache.php */ /* Location: ./system/libraries/Cache/drivers/Cache_wincache.php */