Hi, On Nov 28, 2007 7:54 PM, Eugeny N Dzhurinsky <[EMAIL PROTECTED]> wrote: > So in general the entire tree has several domain nodes, and each domain node > hash set of a nodes which hold the content of domain object for given date, > and each date node has a lot (up to several millions) of child nodes.
The large number of child nodes per a "date" node is a clear warning sign. Accessing a node with a large number (>10k) of direct child nodes is expensive. Can you rearrange the child nodes to a subtree hierarchy? BR, Jukka Zitting
