tags:

views:

25

answers:

1

Any ideas on how to parse RSS feeds without massively slowing down my page?

It takes a good 3 secs to load whilst it grabs the RSS from another server.

+4  A: 

Create a script that will run in cron with 10 min interval (depending on your preference). That script fetches the RSS feeds, storing the data in your server so that your page will get the feeds locally.

Ruel
Good idea...thanks
Andy
Don't do this! It's polling and it sucks... use something to get the data pushed from each of these RSS feeds pushed to you, with a tool like http://superfeedr.com
Julien Genestoux