setOption($option); if(!$this->checkdriver() && !isset($option['skipError'])) { throw new Exception("Can't use this driver for your website!"); } } function driver_set($keyword, $value = "", $time = 300, $option = array() ) { if(isset($option['skipExisting']) && $option['skipExisting'] == true) { return apc_add($keyword,$value,$time); } else { return apc_store($keyword,$value,$time); } } function driver_get($keyword, $option = array()) { // return null if no caching // return value if in caching $data = apc_fetch($keyword,$bo); if($bo === false) { return null; } return $data; } function driver_delete($keyword, $option = array()) { return apc_delete($keyword); } function driver_stats($option = array()) { $res = array( "info" => "", "size" => "", "data" => "", ); try { $res['data'] = apc_cache_info("user"); } catch(Exception $e) { $res['data'] = array(); } return $res; } function driver_clean($option = array()) { @apc_clear_cache(); @apc_clear_cache("user"); } function driver_isExisting($keyword) { if(apc_exists($keyword)) { return true; } else { return false; } } }