I'm on a roll now, just got XML::Filter::Cache written, which caches SAX events to disk using Storable. It makes SAX parsing nice and fast (assuming you've parsed once already).
Next onto the more tricky bits of AxKit - XSP and AxPoint. AxPoint first as its easier.
XML::Filter::Cache (Score:2, Insightful)
Neat -- does it just Store each event's data to the disk file individually, so that parsing the file doesn't involve unStoring a whole structure of events? I can imagine efficiency gains either way (or inbetween), but I haven't gone benchmarking Storeable yet or anything.
Also, is this for caching any bunch of SAX e
Re:XML::Filter::Cache (Score:2)
It'll cache SAX events from anything.
Re:XML::Filter::Cache (Score:1)