[Zope-dev] Property Storage Bloat Question

Dieter Maurer dieter@handshake.de
Sun, 22 Jul 2001 22:26:50 +0200 (CEST)


Chris Withers writes:
 > If I store a moderately frequently changed property on a Folder will only the
 > folder object get tacked on the end of Data.fs when the folder changes or will
 > it be the folder object plus all the objects in the folder?
The objects in the folder should be represented by the list
of their oids. This list is rewritten, the objects themselves
should not.

If you use a BTree-Folder, then only the oid of the
BTree would be rewritten, not its content.


Dieter