[Zodb-checkins] CVS: ZODB3/bsddb3Storage - NEWS:1.5

Barry Warsaw barry@wooz.org
Mon, 11 Nov 2002 17:18:34 -0500


Update of /cvs-repository/ZODB3/bsddb3Storage
In directory cvs.zope.org:/tmp/cvs-serv31105

Modified Files:
	NEWS 
Log Message:
Updates


=== ZODB3/bsddb3Storage/NEWS 1.4 => 1.5 ===
--- ZODB3/bsddb3Storage/NEWS:1.4	Sat Nov  9 00:32:21 2002
+++ ZODB3/bsddb3Storage/NEWS	Mon Nov 11 17:18:33 2002
@@ -1,7 +1,7 @@
 Changes to the Berkeley storages for ZODB3
 ==========================================
 
-2.0 beta 1 (08-Nov-2002)
+2.0 beta 1 (11-Nov-2002)
 
     All new implementations of Full and Minimal storages.  Highlights
     include:
@@ -15,14 +15,23 @@
         write strategy to avoid the need for temporary log files.
         This gives better disk and cpu performance.
 
-      * Autopacking (Full only).  Automatic packing of the Full
-        storage is implemented in a separate thread.  Autopacking is
-        like "classic" pack except that it doesn't normally do garbage
-        collection.  Since it only gets rid of old object revisions,
-        it should be faster than a classic pack.  You can specify
-        packing policies, such as how often to autopack, how far back
-        in the past to pack to, and how often you want the autopack
-        thread to perform a full gc classic pack.
+      * Easier configuration through a configuration instance passed
+        to the constructors.  You may not need a DB_CONFIG file
+        anymore.
+
+      * Autopacking (Full only).  Automatic packing of both storages
+        is implemented in a separate thread.  For Full storage,
+        autopacking is like "classic" pack except that it doesn't
+        normally do garbage collection.  Since it only gets rid of old
+        object revisions, it should be faster than a classic pack.
+        You can specify packing policies, such as how often to
+        autopack, how far back in the past to pack to, and how often
+        you want the autopack thread to perform a full gc classic
+        pack.
+
+        Minimal storage also has an optional autopack thread, but that
+        always does a "classic pack" since there /are/ no older object
+        revisions to get rid of.
 
      Note that there was no official 1.0 final release, although the
      closest thing to a 1.0 final was included in the ZODB 3.1
@@ -49,7 +58,7 @@
       See
 
       http://www.zope.org/Members/jim/ZODB/ApplicationLevelConflictResolution
-      
+
       for details.
 
     - Support for the informal "storage iteration protocol" has been