Quantcast
Channel: What is the Fastest Way to parse RSS feed in PHP? - Stack Overflow
Browsing all 4 articles
Browse latest View live

Answer by zrvan for What is the Fastest Way to parse RSS feed in PHP?

Summary of comments and answers: Make sure you only parse when needed, check for updates separately and serve information from a local DB on page requests. Make sure the latency isn't due to slow...

View Article



Answer by Your Common Sense for What is the Fastest Way to parse RSS feed in...

It seems you are parsing your feeds online, on each and every user request. It always would be slow. It is network, you know. The only sensible way of reading RSS feeds is asynchronous one. One script...

View Article

Answer by grunk for What is the Fastest Way to parse RSS feed in PHP?

I'm not sure that Gzip could have a positive influence on the parse time, it will decrease the download time but that's all. You should consider using the SAX parser instead of simplexml : Php Doc...

View Article

What is the Fastest Way to parse RSS feed in PHP?

I have pulled 7 RSS feed and parse in our website. But the parse time is very slow, what is the best way to parse RSS feed in PHP. Also is there a way to GZip for faster parse time? I use this GZip in...

View Article
Browsing all 4 articles
Browse latest View live




Latest Images