Hi, I'm currently in the process of planning an application that needs to output XML for external websites, an RSS feed actually. The XML info is pulled from a database which is updated on an irregular basis. The external websites pull this info once a day.
My question is, should I setup a cron tab that will write to an XML file or should I simply have a script output the XML and make requests to the database everytime it is accessed?
My concerns are for performance and optimization of course.
Any suggestions?