[ZODB-Dev] Shush ClientStorage

2005-10-21 Thread Chris Withers
Hi All, ZEO's got rather noisy in Zope 2.8 :-S Anyone mind if I make the following change to the ZEO trunk? cheers, Chris PS: What branches should I merge this to to get it into the next 2.8 release, assuming it is okay? Index: ZEO/ClientStorage.py

Re: [ZODB-Dev] Slow Zeo load times after upgrade to ZODB 3.4

2005-10-21 Thread Dieter Maurer
Erik A. Dahl wrote at 2005-10-21 08:56 -0400: I just upgraded a client site from zope 2.6.2 to 2.8.1 (which I think has ZODB 3.4.1). After the upgrade I'm seeing very slow initial load times for objects from the zeo server (much slower than before). I understand that the objects need to be

Re: [ZODB-Dev] question about connections

2005-10-21 Thread Dieter Maurer
Victor Safronovich wrote at 2005-10-21 14:54 +0600: ... app = Zope.bobo_application() try: self.running = True while self.running: get_transaction().begin() try: scheduler = app.unrestrictedTraverse(

RE: [ZODB-Dev] Slow Zeo load times after upgrade to ZODB 3.4

2005-10-21 Thread Tim Peters
[Dieter Maurer] The ZODB cache lives in RAM and is a Python object cache. It is a per connection cache. The ZEO client cache lives on disk and is a pickle cache (it caches the object states not the objects themselves). It is shared by all connections to a single storage (in one process).