- Timestamp:
- 2006-05-27T14:01:25+02:00 (7 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
-
xcache.c (modified) (1 diff)
-
xcache.ini (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/xcache.c
r36 r39 1802 1802 #endif 1803 1803 #ifdef HAVE_XCACHE_COVERAGER 1804 PHP_INI_ENTRY1 ("xcache.coveragedump_directory", "", PHP_INI_SYSTEM, xc_OnUpdateString, &xc_coveragedump_dir)1805 STD_PHP_INI_BOOLEAN("xcache.coveragedumper" , "1", PHP_INI_ALL, OnUpdateBool, coveragedumper, zend_xcache_globals, xcache_globals)1804 PHP_INI_ENTRY1 ("xcache.coveragedump_directory", "/tmp/pcov/", PHP_INI_SYSTEM, xc_OnUpdateString, &xc_coveragedump_dir) 1805 STD_PHP_INI_BOOLEAN("xcache.coveragedumper" , "0", PHP_INI_ALL, OnUpdateBool, coveragedumper, zend_xcache_globals, xcache_globals) 1806 1806 #endif 1807 1807 PHP_INI_END() -
trunk/xcache.ini
r34 r39 14 14 15 15 [xcache] 16 ; ini only settings, all the values here is default 16 ; ini only settings, all the values here is default unless explained 17 17 ; to disable: xcache.size=0 18 18 ; to enable : xcache.size=any size > 0 and your system mmap allows … … 31 31 ; N/A for /dev/zero 32 32 xcache.readonly_protection = Off 33 ; for win32, xcache.mmap_path=anonymous map name, not file path 33 34 ; uncomment and change to "/tmp/xcache" for readonly protection 35 ; 2 group of php won't share the same /tmp/xcache 34 36 xcache.mmap_path = "/dev/zero" 37 38 35 39 ; leave it blank(disabled) or "/tmp/phpcore/" 36 40 ; make sure it's writable by php (without checking open_basedir) … … 43 47 [xcache.coverager] 44 48 ; ini only settings 45 ; xcache.coveragedump_directory = "/tmp/pcov/" 46 xcache.coveragedump_directory = "" 47 ; per request settings, disable if xcache.coveragedump_directory is not set 48 xcache.coveragedumper = On 49 ; make sure it's readable (care open_basedir) coverage viewer script 50 xcache.coveragedump_directory = "/tmp/pcov/" 51 52 ; per request settings, will be auto disabled if xcache.coveragedump_directory is not set 53 xcache.coveragedumper = Off
Note: See TracChangeset
for help on using the changeset viewer.

