[ZODB-Dev] List of references to all objects from ZODB?

Jeremy Hylton jeremy@zope.com (Jeremy Hylton)
Mon, 4 Nov 2002 12:44:43 -0500


Can't you just use all the _index attribute of the FileStorage?  If
the oid isn't in _index, there's no way FileStorage is going to load
it.  It seems more efficient to use the list of known oids than to do
a has_key() for every possible oid.

Jeremy