"ravikanth gangarapu" <[EMAIL PROTECTED]> writes: > Is there a method similar to "dispose" method to avoid memory leaks > as in XML::DOM(like $doc->dispose for a DOM document object).
Hi, The DESTROY() method cleans up all the memory, so if $doc goes out of scope it will be done automatically. Or you can call it yourself - but the object will be invalid, so you better create a new one. jas. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
