in reply to Fast processing of XML files for CGI

Have you thought about preprocessing the XML files? If your XML files are fairly static, then you can, say, have a background process that wakes up every 10-20 min, check for new or updated files. If new files found, then update the cached results. If no new files found, then exit. This way, all you have to do is to display the cached result, instead of doing XML parsing on the fly.

  • Comment on Re: Fast processing of XML files for CGI