in reply to
speed and efficiency XML/DBI vs DBI
It sounds like you're trying to build a cache. XML is a poor choice for that because of all the parsing overhead. You should look at using
Cache::Cache
or
MLDBM::Sync
instead.
Comment on
Re: speed and efficiency XML/DBI vs DBI
In Section
Seekers of Perl Wisdom