Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

What this feature "http://apache.org/xml/features/dom/defer-node-expansion" does?

i have read about this feature. But was really unable to understand what will happen if this is set to false.

Can anyone come up elaborately on this as i don't find any other link that explain to the ability i understand.

share|improve this question

2 Answers

up vote 1 down vote accepted

it is a form lazy loading: DOM nodes are created as you traverse tree.

This is a common design pattern, it is widely used. For example Hibernate calls it Lazy Fetching.

share|improve this answer

by deferred node expansion, basically, a lot of objects/strings are not created/allocated until you navigate to the corresponding node position... it makes dom parsing a bit faster but tree traversal slower ...

the initial memory consumption is lower than a full-expanded DOM tree, but after traversal, the memory usage could easily be a lot higher than a full-expanded DOM tree... beware of the catch

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.