FeedWind crawler update frequency

  • Created : Jun, 1, 2016
  • Last Updated: Sep, 24, 2023

The FeedWind crawler bot

The FeedWind crawler is an RSS feed crawler bot for FeedWind, a widget which displays RSS feeds, provided by Mikle Inc.

To display recent content from a feed in our RSS widget, we regularly crawl the RSS feed entered in the setup page of FeedWind. Technically, we crawl once every 5 minutes to 5 hours depending on a user’s plan so feeds will refresh at that frequency. However, RSS feeds are updated by the RSS feed source page owners, so obviously we can only update as fast as the originating feed updates.

Widget refresh (update frequency)

Using a script to force automatic refresh

Function RefreshIframes(){

$(“iframe”).each(function() {

var src= $(this).attr(‘src’);

$(this).attr(‘src’, src);

});

}

setInterval(function() {

RefreshIframes();

}, 30000);

Using HTML to force automatic refresh

<meta http-equiv=”refresh” content=”1800″>

Which will refresh the whole page every 1800 seconds


FeedWind crawler technical details

Crawler: FeedWind Crawler
User-Agent: Mozilla/5.0 (compatible; Feedwind/3.0; +http://feed.mikle.com/support/description/)



Related posts

Supported site building platforms

Supported site building platforms

The FeedWind RSS widget is compatible with a wide range of popular website building platforms, both online and offline....

What is FeedWind used for?

FeedWind is an extremely versatile RSS widget. With support for so many platforms and implementations, FeedWind is the ideal...

Understanding the Difference Between Screenshot and Screencast

Screenshots and screencasts are handy tools for both developers and clients. Both offer a visual way to share information,...