[ZODB-Dev] tcp_begin in tests

2005-07-06 Thread Antonio Beamud Montero
Hi all: In my app, I'm using ZODB to store data, the problem is that I have implemented several unittest, for every unit test I create the ZODB database and when the test finished I destroy the database (including files). When I run 2 test, the first is executed ok, but the second test give me the

Re: [ZODB-Dev] tcp_begin in tests

2005-07-07 Thread Antonio Beamud Montero
El mié, 06-07-2005 a las 19:57 +0200, Antonio Beamud Montero escribió: Hi all: In my app, I'm using ZODB to store data, the problem is that I have implemented several unittest, for every unit test I create the ZODB database and when the test finished I destroy the database (including files

RE: [ZODB-Dev] tcp_begin in tests

2005-07-07 Thread Antonio Beamud Montero
El mié, 06-07-2005 a las 14:19 -0400, Tim Peters escribió: [Antonio Beamud Montero] In my app, I'm using ZODB to store data, the problem is that I have implemented several unittest, for every unit test I create the ZODB database and when the test finished I destroy the database (including

[ZODB-Dev] Conflict Error

2006-02-24 Thread Antonio Beamud Montero
Hi all: I have a problem with conflicts in my system. I have implemented a multi-thread server and I have several server as ZEO clients. In ZODB I have created 3 objects: root['pendings'] = Status() root['error'] = Status() root['completed'] = Status() Where Status is a Persistent Class, with an

[ZODB-Dev] Extenuated memory

2006-03-22 Thread Antonio Beamud Montero
Hi all: I have implemented a multi-thread server and I have several server as ZEO clients. In the root (ZODB) I have created 3 objects: root['pendings'] = Status() root['error'] = Status() root['completed'] = Status() Where Status is a Persistent Class, with an OOBTree attribute called _dict,

Re: [ZODB-Dev] Extenuated memory

2006-03-24 Thread Antonio Beamud Montero
El jue, 23-03-2006 a las 15:02 -0500, Tim Peters escribió: [Antonio Beamud Montero] But my server doesn't free any memory, now it uses 55Mb of resident size... How I can debug this references? Many layers are involved in memory management, from ZODB through Python down to your platform