RE: [ZODB-Dev] CorruptedDataError sniff !

2005-06-02 Thread Tim Peters
[Eric Brun, with a corruption problem] This is a good place to discuss it, but I can't tell you more here than I said on zope-dev earlier this morning: http://mail.zope.org/pipermail/zope-dev/2005-June/024941.html ... I have tried to do a fsrecover, it removes a transaction. ... fstest say

RE: [ZODB-Dev] ZODB 3.4 and Persistence

2005-06-02 Thread Tim Peters
[Kevin Dangoor] I'm working with the ZODB 3.4 beta, and I'm working on getting Catalog running with it. I noticed that the _Persistence module is not being built. Is this because ExtensionClass is not included and _Persistence requires ExtensionClass? Catalog has a couple of acquisition

[ZODB-Dev] [Proposal] Size controlled ZODB cache

2005-06-02 Thread Dieter Maurer
Currently, the ZODB cache can only be controlled via the maximal number of objects. This makes configuration complex as the actual limiting factor is the amount of available RAM and it is very difficult to estimate the size of the objects in the cache. I therefore propose the implementation of

Re: [ZODB-Dev] [Proposal] Size controlled ZODB cache

2005-06-02 Thread Shane Hathaway
Dieter Maurer wrote: Currently, the ZODB cache can only be controlled via the maximal number of objects. This makes configuration complex as the actual limiting factor is the amount of available RAM and it is very difficult to estimate the size of the objects in the cache. I therefore

Re: [ZODB-Dev] [Proposal] Size controlled ZODB cache

2005-06-02 Thread Jim Fulton
Shane Hathaway wrote: Dieter Maurer wrote: Currently, the ZODB cache can only be controlled via the maximal number of objects. This makes configuration complex as the actual limiting factor is the amount of available RAM and it is very difficult to estimate the size of the objects in the

RE: [ZODB-Dev] ZODB 3.4 and Persistence

2005-06-02 Thread Tim Peters
[Tim Peters] ... Hmm. _Persistence.c should be removed from ZODB. Zope 2.8 has its own copy now, in its lib/python/Persistence/ directory. Sorry, I lied about that part. Zope 2.8 copies its Persistence directory from ZODB, so _Persistence.c can't be removed from ZODB yet. Grr -- which

Re: [ZODB-Dev] ZODB 3.4 and Persistence

2005-06-02 Thread Kevin Dangoor
On 6/2/05, Tim Peters [EMAIL PROTECTED] wrote: [Kevin Dangoor] I'm working with the ZODB 3.4 beta, and I'm working on getting Catalog running with it. I noticed that the _Persistence module is not being built. Is this because ExtensionClass is not included and _Persistence requires