[Zodb-checkins] CVS: ZODB3 - ZEO-NEWS.txt:1.38
Guido van Rossum
guido@python.org
Mon, 30 Sep 2002 12:55:49 -0400
Update of /cvs-repository/ZODB3
In directory cvs.zope.org:/tmp/cvs-serv32729
Modified Files:
ZEO-NEWS.txt
Log Message:
Document new wait=1 default and compatibility arguments debug and
wait_for_server_on_startup.
=== ZODB3/ZEO-NEWS.txt 1.37 => 1.38 ===
--- ZODB3/ZEO-NEWS.txt:1.37 Wed Sep 25 18:33:48 2002
+++ ZODB3/ZEO-NEWS.txt Mon Sep 30 12:55:49 2002
@@ -186,6 +186,26 @@
- Added a modest unit test suite for the client cache.
+ - Wait for connection by default
+
+ The default for the ClientStorage class has changed to wait
+ until a connection is established by default. To return
+ immediately without waiting for a connection, use
+ ClientStorage(..., wait=0). (This only makes sense when a
+ persistent cache is also specified, by using the client
+ keyword argument to the ClientStorage constructor, or by
+ setting the ZEO_CLIENT environment variable.
+
+ - Arguments debug and wait_for_server_on_startup are back
+
+ The ZEO1 arguments debug and wait_for_server_on_startup were
+ added to the ClientStorage constructor signature, for
+ backwards compatibility (these are used in many a
+ custom_zodb.py file). Setting debug has no effect except
+ issuing a log message. The wait_for_server_on_startup is an
+ alias for the wait argument; using wait_for_server_on_startup
+ issues a log message.
+
ZEO 2.0 beta 1 (2002/08/23)
The changes since ZEO 2.0a1 release are: