policy for polling rss - Stack Overflow most recent 30 from stackoverflow.com2009-11-29T22:47:48Zhttp://stackoverflow.com/feeds/question/939642http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/939642/policy-for-polling-rss5policy for polling rss flybywire2009-06-02T13:44:34Z2009-06-02T15:31:35Z
<p>I have an application that polls several rss sources on the web.</p>
<p>What is the etiquette when polling other's web servers. How frequently to poll, etc?</p>
<p>What are the best practices?</p>
http://stackoverflow.com/questions/939642/policy-for-polling-rss/939652#9396521Answer by altCognito for policy for polling rss altCognito2009-06-02T13:46:44Z2009-06-02T13:46:44Z<p>Once an hour is a frequency I've heard.</p>
http://stackoverflow.com/questions/939642/policy-for-polling-rss/939653#9396534Answer by Jonathan Fingland for policy for polling rss Jonathan Fingland2009-06-02T13:46:53Z2009-06-02T13:46:53Z<p>Google's FeedFetcher claims it polls rss feed slightly less than once per hour.</p>
<p>From: <a href="http://code.google.com/apis/ajaxfeeds/documentation/" rel="nofollow">http://code.google.com/apis/ajaxfeeds/documentation/</a></p>
<blockquote>
<h1>Feed Crawl Frequency</h1>
<p>As the Google AJAX Feed API uses Feedfetcher, feed data from the AJAX Feed API may not always be up to date. The Google feed crawler ("Feedfetcher") retrieves feeds from most sites less than once every hour. Some frequently updated sites may be refreshed more often.</p>
</blockquote>
http://stackoverflow.com/questions/939642/policy-for-polling-rss/939662#9396622Answer by Bill the Lizard for policy for polling rss Bill the Lizard2009-06-02T13:48:00Z2009-06-02T14:22:26Z<p><a href="http://www.therssweblog.com/?guid=20070408105324" rel="nofollow">Once an hour</a>, if you want to just go by rule-of-thumb (but the link explains some better options).</p>
http://stackoverflow.com/questions/939642/policy-for-polling-rss/939686#9396860Answer by Sruly for policy for polling rss Sruly2009-06-02T13:52:00Z2009-06-02T13:52:00Z<p>Rss has a ttl setting in it so really you should only poll when the TTL expires.</p>
<p>But I guess if they don't put one in its their problem and you should poll something like once an hour</p>
http://stackoverflow.com/questions/939642/policy-for-polling-rss/939691#9396910Answer by Oli for policy for polling rss Oli2009-06-02T13:52:43Z2009-06-02T13:52:43Z<p>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.</p>
<p>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.</p>
<p>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.</p>
http://stackoverflow.com/questions/939642/policy-for-polling-rss/939709#9397095Answer by Maciej Łebkowski for policy for polling rss Maciej Łebkowski2009-06-02T13:55:24Z2009-06-02T15:31:35Z<ol>
<li><p>Make use of HTTP cache. Send <code>Etag</code> and <code>LastModified</code> headers. Recognize <code>304 Not modified</code> response. This way you can save a lot of bandwidth. Additionally some scripts recognize the <code>LastModified</code> header and return only partial contents (ie. only the two or three newest items instead of all 30 or so).</p></li>
<li><p>Don’t poll RSS from services that supports <a href="http://technorati.com/developers/ping/" rel="nofollow">RPC Ping</a>. I.e. if you’re receiving RPC Ping from a service, you don’t have to poll the data in the standard interval — do it once a day to check if the RPC Ping still works or not (ping can be disabled, reconfigured, damaged, etc). This way you can fetch RSS only on receiving PING, not every hour or so.</p></li>
<li><p>Check the TTL (in RSS) or cache control headers (<code>Expires</code> in ATOM), and don’t fetch until resource expires.</p></li>
<li><p>Try to adapt to frequency of new items in each single RSS feed. If in the past week there were only two updates in particular feed, don’t fetch it more than once a day. AFAIR Google Reader does that. </p></li>
<li><p>Lower the rate at night hours or other time when the traffic on your site is low.</p></li>
<li><p>At last, do it once a hour. ;)</p></li>
</ol>