contributions/cache.xcache/install/check_preconditions.php File Reference
Go to the source code of this file.
Functions |
|
cache_xcache_check_preconditions () | |
Check if XCache is active. |
Function Documentation
cache_xcache_check_preconditions | ( | ) |
Check if XCache is active.
Definition at line 5 of file check_preconditions.php.
00005 { 00006 $ret = new Status(); 00007 if (!function_exists('xcache_set')) { 00008 $ret->merge('XCache is not enabled - XCache cache persister will not work!'); 00009 } 00010 return $ret; 00011 }