From: Ilia Alshanetsky Date: Wed, 8 Feb 2006 23:43:48 +0000 (+0000) Subject: Fixed bug #36334 (Added missing documentation about realpath cache INI X-Git-Tag: php-5.1.3RC1~124 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f541b63e1fac60eb07d8f32604dd50c196379a85;p=php Fixed bug #36334 (Added missing documentation about realpath cache INI settings). --- diff --git a/NEWS b/NEWS index 022614436c..7cd8fc3d7f 100644 --- a/NEWS +++ b/NEWS @@ -20,6 +20,8 @@ PHP NEWS - Added imap_savebody() that allows message body to be written to a file. (Mike) - Fixed imagecolorallocate() and imagecolorallocatelapha() to return FALSE on error. (Pierre) +- Fixed bug #36334 (Added missing documentation about realpath cache INI + settings). (Ilia) - Fixed bug #36308 (ReflectionProperty::getDocComment() does not reflect extended class commentary). (Ilia) - Fixed bug #36306 (crc32() differ on 32-bit and 64-bit platforms) diff --git a/php.ini-dist b/php.ini-dist index e3f33858fb..ffbaae89b6 100644 --- a/php.ini-dist +++ b/php.ini-dist @@ -227,6 +227,16 @@ disable_classes = ; being interrupted by the user or a browser timing out. ; ignore_user_abort = On +; Determines the size of the realpath cache to be used by PHP. This value should +; be increased on systems where PHP opens many files to reflect the quantity of +; the file operations performed. +; realpath_cache_size=16k + +; Duration of time, in seconds for which to cache realpath information for a given +; file or directory. For systems with rarely changing files, consider increasing this +; value. +; realpath_cache_ttl=120 + ; ; Misc ; diff --git a/php.ini-recommended b/php.ini-recommended index 34cab3e3c5..081743db65 100644 --- a/php.ini-recommended +++ b/php.ini-recommended @@ -285,6 +285,16 @@ disable_classes = ; being interrupted by the user or a browser timing out. ; ignore_user_abort = On +; Determines the size of the realpath cache to be used by PHP. This value should +; be increased on systems where PHP opens many files to reflect the quantity of +; the file operations performed. +; realpath_cache_size=16k + +; Duration of time, in seconds for which to cache realpath information for a given +; file or directory. For systems with rarely changing files, consider increasing this +; value. +; realpath_cache_ttl=120 + ; ; Misc ;