[ZODB-Dev] Memory leaks?

Jeremy Hylton jeremy@zope.com
Wed, 10 Oct 2001 13:09:55 -0400 (EDT)


>>>>> "CW" == Chris Withers <chrisw@nipltd.com> writes:

  CW> Jeremy Hylton wrote:
  >>
  >> We've also seen this error in some internal projects here, but
  >> aren't any closer to figuring out the cause than you are :-(.

  CW> Any hints on hunting this kindof thing, or anywhere else where
  CW> _my_ code may be leaking memory, would be very gratefully
  CW> recieved :-S

The other day Jim mentioned that its often useful to look at the
reference counts of classes.  Each instance has a reference to its
class, so if if a particular class is leaking it's reference count
will go way up.

Jeremy