I am using XML::Twig to parse through a very large xml document. I want it to split it into chunks based on the \[code\]<change></change>\[/code\] tags. Right now I have:\[code\]my $xml = XML::Twig -> new( twig_handlers => { 'change' => \&parseChange, });$xml -> parsefile($LOGFILE);\[/code\]Right now this is running the parseChange method when it pulls that block from the xml. It is going extremely slow. I tested it against reading the xml from a file with \[code\]$/=</change>\[/code\] and writing a function to return the contents of an xml tag and it went much faster.Is there something I'm missing or am I using Twig incorrectly? I'm new to perl :\