Next | Making Programs Faster | 85 |
Also some minor recommendations
Instead of this:
eval { $doc=$xs1->XMLin($outfile, forcearray => ['Change']); };
Just use this:
eval { $doc=$xs1->XMLin($xml, forcearray => ['Change']); };
The XML is already in memory (we just wrote it out)
So why bother to read it back in again?
Next | Copyright © 2003 M. J. Dominus |