[ZODB-Dev] Find references to an object
Jeremy Hylton
jeremy@zope.com
Wed, 8 Aug 2001 16:53:45 -0400 (EDT)
>>>>> "JDH" == John D Heintz <jheintz@isogen.com> writes:
JDH> Won't the self-packing and garbage collecting variant of
JDH> BerkeleyStorage maintain this info? Trade space for time and
JDH> all that.
If I understand the GC plans correctly, it will use ref counting plus
an occasional cycle-detection pass (rather like Python itself). This
approach won't does need to answer the question: "Given an object A,
what points to it?" It only works in the other direction: "Given an
object A, what does it point to?"
Jeremy