]> granicus.if.org Git - php/commitdiff
ChangeLog update
author <changelog@php.net> <>
Thu, 20 Apr 2006 05:31:50 +0000 (05:31 +0000)
committer <changelog@php.net> <>
Thu, 20 Apr 2006 05:31:50 +0000 (05:31 +0000)
ChangeLog
Zend/ChangeLog

index 935a504eda6b8186b26af988a15d4fe93da75d00..c67e6d81348ffc85c493d6c36490ab060fc08e2a 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,28 @@
+2006-04-19  Dmitry Stogov  <dmitry@zend.com>
+
+    * (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  <antony@zend.com>
+
+    * ext/standard/streamsfuncs.c:
+      fix typo (see #35900)
+
 2006-04-18  Ilia Alshanetsky  <ilia@prohost.org>
 
     * (PHP_5_1)
index 55d73779b3435b80535d3a175dc1f55128f1b58e..44edf039499870ee27fef20fa765c99d11b3d4fd 100644 (file)
@@ -1,3 +1,8 @@
+2006-04-19  Dmitry Stogov  <dmitry@zend.com>
+
+    * zend.c:
+      Fixed cleanup dependent on uninitialized value
+
 2006-04-18  Sara Golemon  <sara@golemon.com>
 
     * zend_API.c: