c# - Extremely large XML tree manipulation -
i know question might asked somewhere around sof. having search sof, find no matched solution.
i have mission create & maintain/populate extremely large xml tree (approx 2gb on disk). according requirements, have to:
- apply lots of transformation logic xml tree's nodes
- create new tree, add transformed nodes it, save new tree file.
the first thing in mind when started work on is: don't have enough memory hold file & if have enough memory, performance serious problem if whole tree loaded memory.
with in mind, i'd used stream xml fragments technique read data original file w/o loading memory. create new tree, stuck. msdn seems not have doc deal problem. idea?
thanks in advance.
Comments
Post a Comment