[XML-SIG] PyXML API problem

Jeremy Kloth jeremy.kloth at fourthought.com
Tue Jul 15 17:21:31 EDT 2003


Kamel Hamard (LMC) <kamel.hamard at ericsson.com> wrote:
> Hi Fred,
>
> I'm creating the dom in memory after collecting the data from the
> system.
>
> In my current implementation I'm using ReleaseNode method to free the
> memory used and it works fine.
>
> PyXML is slower then 4Suite for manipulating XML document. With
> 4Suite API, I was not able to find a way to free the memory after
> creating documents (equivalent of ReleaseNode or unlink) Do you have
> any idea on how to release the memory used by a dom using the 4Suite
> API ??
>

4Sutie relies on Python's GC to release the memory when it is no longer
needed.  So I guess if you want to force the release of the memory use:

import gc
gc.collect()

-- 
Jeremy Kloth
Fourthought, Inc.





More information about the XML-SIG mailing list