]> granicus.if.org Git - php/commitdiff
Fixed bug #36334 (Added missing documentation about realpath cache INI
authorIlia Alshanetsky <iliaa@php.net>
Wed, 8 Feb 2006 23:43:48 +0000 (23:43 +0000)
committerIlia Alshanetsky <iliaa@php.net>
Wed, 8 Feb 2006 23:43:48 +0000 (23:43 +0000)
settings).

NEWS
php.ini-dist
php.ini-recommended

diff --git a/NEWS b/NEWS
index 022614436c1dba81550c8b8104802f61962bdc3c..7cd8fc3d7fcd7ab61d497c7e2604ff0c9ebd834d 100644 (file)
--- 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)
index e3f33858fb713fbdbab6e2a1888c00e5e464fc60..ffbaae89b6e9de048f66d0ff31ca5b4822fb9607 100644 (file)
@@ -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
 ;
index 34cab3e3c5b1b9bef0c06f2d809b8ef001ecf66b..081743db65f313d3677d7ddad62843d744c27a29 100644 (file)
@@ -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
 ;