You are viewing a plain text version of this content. The canonical link for it is here.
Posted to c-dev@xerces.apache.org by kb...@informatica.com on 2000/09/14 21:38:04 UTC

Memory issues

I have a question about repeated parsing using the same parse object

DOMParser parser;
parser.parse(someXML);
//Use the tree

//What happens now. Is the old tree memory released??
parser.parse(otherXML);

I am trying to use reuseValidator flag and would like to know what would be
the impact?

Kiran