XCache is a fast, stable PHP opcode cacher that has been proven and is now running on production servers under high load.
https://xcache.lighttpd.net/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
393 B
20 lines
393 B
![]()
16 years ago
|
<?php
|
||
|
|
||
|
// should be named as config.php
|
||
|
|
||
|
$charset = "UTF-8";
|
||
|
// $include_paths = array("/www/my-php-project/");
|
||
|
// $exclude_paths = array("/www/my-php-project/tmp/");
|
||
|
$syntaxhiglight = true;
|
||
|
$usecache = false;
|
||
|
//// $datadir is default to ini_get("xcache.coveragedump_directory")
|
||
|
// $datadir = '';
|
||
|
|
||
|
function ob_filter_path_nicer($o)
|
||
|
{
|
||
|
$o = str_replace("/home/", "{H}/", $o);
|
||
|
return $o;
|
||
|
}
|
||
|
|
||
|
?>
|