James Pearson wrote: > I've noticed that memory usage climbs as I keep parsing new input files. I > had assumed that > Xerces would auto-magically handle the memory behind the scenes, but now I > wonder if I > have to "delete" the DOM_Document after I'm finished with it and before I > parse a new file. > (Of course my memory leaks could just be my lousy coding... nah.)
Please pardon a Java guy for butting in here... I remember Andy Heninger doing a lot of work on the DOM implementation to make sure that it didn't leak memory. But... if you're not deleting the DOM_Document object then you *will* definitely leak. -- Andy Clark * IBM, JTC - Silicon Valley * [EMAIL PROTECTED]
