in reply to Re: XML-Twig: more efficient tree processing
in thread XML-Twig: more efficient tree processing

I tried that. All is seems to do is spit back out the XML on the terminal output (unless it's suppose to do that). I am reading the XML for extracting info then I am done, so printing the tree serves no purpose. This is like closing a file after reading for input; There is no need to print the file when the file is closed.

Is there a way to flush silently?

  • Comment on Re^2: XML-Twig: more efficient tree processing

Replies are listed 'Best First'.
Re^3: XML-Twig: more efficient tree processing
by thonar (Monk) on Aug 08, 2012 at 06:10 UTC

    It is suppose to do that, just change:

    $twig->flush;

    to

    $twig->purge;