B
bugbear
I need to process some XML files that are rather large.
However their structure may usefully be expressed
as
<ELEMENT FILE (RECORD)+>
..
..
..
Each record is a few Kb. The files are many 10's of Megabytes.
I would (dearly) like to use DOM to process each record,
since it's easier to get my head round than SAX events.
But I don't want to pull the whole file into
a DOM tree; it's too big.
These people have come up with a perfect (and obvious?)
solution:
http://www.devsphere.com/xml/saxdomix/
But I'm coding in a Perl environment.
Is there a similar Module, generating separate
DOM sub trees for Perl?
BugBear
However their structure may usefully be expressed
as
<ELEMENT FILE (RECORD)+>
..
..
..
Each record is a few Kb. The files are many 10's of Megabytes.
I would (dearly) like to use DOM to process each record,
since it's easier to get my head round than SAX events.
But I don't want to pull the whole file into
a DOM tree; it's too big.
These people have come up with a perfect (and obvious?)
solution:
http://www.devsphere.com/xml/saxdomix/
But I'm coding in a Perl environment.
Is there a similar Module, generating separate
DOM sub trees for Perl?
BugBear