From: Date: Thu, 20 Apr 2006 05:31:50 +0000 (+0000) Subject: ChangeLog update X-Git-Tag: RELEASE_1_3~26 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=bcf5faf095aac822278f33ce856e56a7680f4cd5;p=php ChangeLog update --- diff --git a/ChangeLog b/ChangeLog index 935a504eda..c67e6d8134 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,28 @@ +2006-04-19 Dmitry Stogov + + * (PHP_5_1) + NEWS: + Cleaned up Andrei's patch for caching WSDL in process memory, added TTL and + LIMIT for memory cache. + Memory cache is disblead by fefault because it is experemental and isn't + tested enough. It can be enabled whit configuartion directive + "soap.wsdl_cache = WSDL_CACHE_MEMORY" or "soap.wsdl_cache = + WSDL_CACHE_BOTH" or derectly in SoapClent/SoapServer constructor: $ws = + new SoapClient($wsdl, array("cache_wsdl"=>WSDL_CACHE_BOTH)) + Disk and memory caches use the same TTL value - "soap.wsdl_cache_ttl". + Configuration directive "soap.wsdl_cache_limit" restricts the number of + cached wsdl files in memory. Adding new files into full memory cache will + delete oldest files from it. + Note that, each PHP process or thread uses it's own memory cache. + + * ZendEngine2/zend.c: + Fixed cleanup dependent on uninitialized value + +2006-04-19 Antony Dovgal + + * ext/standard/streamsfuncs.c: + fix typo (see #35900) + 2006-04-18 Ilia Alshanetsky * (PHP_5_1) diff --git a/Zend/ChangeLog b/Zend/ChangeLog index 55d73779b3..44edf03949 100644 --- a/Zend/ChangeLog +++ b/Zend/ChangeLog @@ -1,3 +1,8 @@ +2006-04-19 Dmitry Stogov + + * zend.c: + Fixed cleanup dependent on uninitialized value + 2006-04-18 Sara Golemon * zend_API.c: