I have an application that polls several rss sources on the web.
What is the etiquette when polling other's web servers. How frequently to poll, etc?
What are the best practices?
|
2
|
|
|
|
|
|
|
||||||||
|
|
|
Google's FeedFetcher claims it polls rss feed slightly less than once per hour. From: http://code.google.com/apis/ajaxfeeds/documentation/
|
||
|
|
|
Once an hour, if you want to just go by rule-of-thumb (but the link explains some better options). |
|||
|
|
|
Once an hour is a frequency I've heard. |
||
|
|
|
|
Rss has a ttl setting in it so really you should only poll when the TTL expires. But I guess if they don't put one in its their problem and you should poll something like once an hour |
||
|
|
|
|
Well I'm going to go out there, ignoring the posts that say "Google says, we do", and say: as often as you realistically need to. RSS is there to keep you up to date. If a feed publishes 10 items an hour but only shows five, you'll miss five of those items and the feed isn't serving its purpose. You might as well not hit it at all. Of course, you can't hammer the server with requests but if they're publishing enough to have you requesting once a minute, I don't see how it's unreasonable to match that rate. |
||||
|