[Zodb-checkins] SVN: ZODB/branches/3.4/src/ZODB/component.xml Backport rev 39542 from the trunk.

Tim Peters tim.one at comcast.net
Thu Oct 20 22:03:49 EDT 2005


Log message for revision 39544:
  Backport rev 39542 from the trunk.
  
  Add descriptions to the <zodb> section keys.
  

Changed:
  U   ZODB/branches/3.4/src/ZODB/component.xml

-=-
Modified: ZODB/branches/3.4/src/ZODB/component.xml
===================================================================
--- ZODB/branches/3.4/src/ZODB/component.xml	2005-10-21 02:03:16 UTC (rev 39543)
+++ ZODB/branches/3.4/src/ZODB/component.xml	2005-10-21 02:03:49 UTC (rev 39544)
@@ -153,9 +153,29 @@
                implements="ZODB.database">
     <section type="ZODB.storage" name="*" attribute="storage"/>
     <key name="cache-size" datatype="integer" default="5000"/>
+      <description>
+        Target size, in number of objects, of each connection's
+        object cache.
+      </description>
     <key name="pool-size" datatype="integer" default="7"/>
+      <description>
+        The expected maximum number of simultaneously open connections.
+        There is no hard limit (as many connections as are requested
+        will be opened, until system resources are exhausted).  Exceeding
+        pool-size connections causes a warning message to be logged,
+        and exceeding twice pool-size connections causes a critical
+        message to be logged.
+      </description>
     <key name="version-pool-size" datatype="integer" default="3"/>
+      <description>
+        The expected maximum number of connections simultaneously open
+        per version.
+      </description>
     <key name="version-cache-size" datatype="integer" default="100"/>
+      <description>
+        Target size, in number of objects, of each version connection's
+        object cache.
+      </description>
   </sectiontype>
 
 </component>



More information about the Zodb-checkins mailing list