19 Oct
2003
19 Oct
'03
4:16 p.m.
nwingfield@che-llp.com wrote at 2003-10-14 12:24 -0400:
In an effort to put our Zope-based system into production, I ran an import script to pull in historical data external to Zope. At this point we are experiencing some very strange behaviors - seemingly related to traversal of the object tree - that did not occur prior to the import. At this point we have close to 150,000 objects, each containing a handful of metadata and nothing more.
Hopefully, you are using efficient data structures (tree like) for you internal nodes. The standard "OFS.Folder" (unlike "BTreeFolder2.BTreeFolder") is not suitable to store several 10-thousand objects (its UI is even unsuitable to handle several hundred objects). Dieter