Hello everyone, I've tracked down some memory leaks and now after running for 3 days zeo client's memory goes stable. But I would like to know if there is someone who can comment on this: -On a zope client running for 3 days I get on top of RefCount from DebugInfo the following class: BTrees.IIBtree.IIBucket Question1: does anyone can point out some products which do heavy use of this class soo I can debug on that? I know there is ZCatalog, but what else? Question2: does anyone know if it is safe to apply to this class the LeakFinder product patch? Regards, Julio Dinis Silva _________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
Júlio Dinis Silva wrote:
I've tracked down some memory leaks and now after running for 3 days zeo client's memory goes stable.
But I would like to know if there is someone who can comment on this:
-On a zope client running for 3 days I get on top of RefCount from DebugInfo the following class:
BTrees.IIBtree.IIBucket
Question1: does anyone can point out some products which do heavy use of this class soo I can debug on that? I know there is ZCatalog, but what else?
Question2: does anyone know if it is safe to apply to this class the LeakFinder product patch?
It probably won't work. IIBucket is implemented in C. LeakFinder tries to patch classes with an __init__ and a __del__, which only works with Python classes. ZCatalog could be the culprit if you have a lot of records. Shane
ZCatalog makes heavy use of it (as you mentioned), but I dont know of any other products which do. LeakFinder might help... I can't vouch for its safety, but I can for its potential utility. "Júlio Dinis Silva" wrote:
Hello everyone,
I've tracked down some memory leaks and now after running for 3 days zeo client's memory goes stable.
But I would like to know if there is someone who can comment on this:
-On a zope client running for 3 days I get on top of RefCount from DebugInfo the following class:
BTrees.IIBtree.IIBucket
Question1: does anyone can point out some products which do heavy use of this class soo I can debug on that? I know there is ZCatalog, but what else?
Question2: does anyone know if it is safe to apply to this class the LeakFinder product patch?
Regards, Julio Dinis Silva
_________________________________________________________________ Get your FREE download of MSN Explorer at http://explorer.msn.com/intl.asp
_______________________________________________ Zope-Dev maillist - Zope-Dev@zope.org http://lists.zope.org/mailman/listinfo/zope-dev ** No cross posts or HTML encoding! ** (Related lists - http://lists.zope.org/mailman/listinfo/zope-announce http://lists.zope.org/mailman/listinfo/zope )
-- Chris McDonough Zope Corporation http://www.zope.org http://www.zope.com """ Killing hundreds of birds with thousands of stones """
participants (3)
-
Chris McDonough -
J�lio Dinis Silva -
Shane Hathaway