How does Google Reader get every item in an RSS feed? - Stack Overflow most recent 30 from stackoverflow.com2010-03-21T05:30:21Zhttp://stackoverflow.com/feeds/question/220878http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/220878/how-does-google-reader-get-every-item-in-an-rss-feed10How does Google Reader get every item in an RSS feed?Horace Loebhttp://stackoverflow.com/users/250682008-10-21T05:43:03Z2008-10-21T14:54:35Z
<p>Slashdot's RSS feed is <a href="http://rss.slashdot.org/Slashdot/slashdot" rel="nofollow">http://rss.slashdot.org/Slashdot/slashdot</a>. If I download the XML file directly, I only get a few of the posts from today. However, if I subscribe to the feed in Google Reader, and keep scrolling down in their "infinite scroll" interface, it seems like I can get an arbitrary number of Slashdot posts from the past -- maybe I can get every Slashdot post ever?</p>
<p>So:</p>
<ol>
<li>How does Google Reader retrieve an unlimited number of posts from an RSS feed.</li>
<li>How can I do the same.</li>
</ol>
http://stackoverflow.com/questions/220878/how-does-google-reader-get-every-item-in-an-rss-feed/220885#2208852Answer by Jonas Follesø for How does Google Reader get every item in an RSS feed?Jonas Follesøhttp://stackoverflow.com/users/5852008-10-21T05:46:14Z2008-10-21T05:46:14Z<p>They have been indexing the web for years, and store everything they come over. So the moment you add a "subscribe to this" link to your page, the google crawler will start indexing that page and store it.</p>
<p>For RSS they also have the benefit of having multiple people subscribing to the same feed.</p>
<p>So for your application I suggest solving this by saving any downloaded items locally, so that new subscribes can go back to the point in time the first user subscribed to that feed. It won't give you unlimited, but over time it will give you a much larger archive than just the 20 latest items.</p>
http://stackoverflow.com/questions/220878/how-does-google-reader-get-every-item-in-an-rss-feed/220889#22088911Answer by scronide for How does Google Reader get every item in an RSS feed?scronidehttp://stackoverflow.com/users/228442008-10-21T05:49:00Z2008-10-21T05:54:47Z<p>Google follows one instance of the feed for all its users, so they've been tracking and storing Slashdot articles, for example, long before any new subscriber starts reading.</p>
<p>To do the same, you would have to poll the RSS feeds you want at regular intervals and store any unique articles you find locally.</p>
http://stackoverflow.com/questions/220878/how-does-google-reader-get-every-item-in-an-rss-feed/222184#2221845Answer by Horace Loeb for How does Google Reader get every item in an RSS feed?Horace Loebhttp://stackoverflow.com/users/250682008-10-21T14:54:35Z2008-10-21T14:54:35Z<p>I just discovered that if you're authenticated you can do something like:</p>
<p><a href="http://www.google.com/reader/atom/feed/http://rss.slashdot.org/Slashdot/slashdot?n=100" rel="nofollow">http://www.google.com/reader/atom/feed/http://rss.slashdot.org/Slashdot/slashdot?n=100</a></p>
<p>to get an arbitrary number of results from a feed.</p>