I want to extract just the first
for multiple RSS sources, I'm trying to figure out what would be the most resource friendly way of doing this.
1) Should I transform each RSS feed with an XSLT and display the results directly on the page that renders stuff.
OR
2) Should I transform and store the results of the transformation in the database, and then read the results from the database.
If I go with the first approach, whenever the user makes a request on the page the transformation will take place for each RSS feed.
What would you do in this situation?