writeCacheFile() protected method

protected writeCacheFile ( $file, $content )
Example #1
0
 /**
  * write apc-cache()
  *
  * @param $file
  * @param $content
  */
 protected function writeCacheFile($file, $content)
 {
     parent::writeCacheFile($file, $content);
     // Compile cached-file into bytecode-cache
     if (function_exists('apc_compile_file') === true) {
         apc_compile_file($file);
     }
 }