VOOZH about

URL: https://www.geeksforgeeks.org/java/what-is-a-webcrawler-and-where-is-it-used/

⇱ What is a Webcrawler and where is it used? - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

What is a Webcrawler and where is it used?

Last Updated : 12 Jul, 2025

Web Crawler is a bot that downloads the content from the internet and indexes it. The main purpose of this bot is to learn about the different web pages on the internet. This kind of bots is mostly operated by search engines. By applying the search algorithms to the data collected by the web crawlers, search engines can provide the relevant links as a response for the request requested by the user. In this article, let's discuss how the web crawler is implemented. 

Webcrawler is a very important application of the Breadth-First Search Algorithm. The idea is that the whole internet can be represented by a directed graph: 

  • with vertices -> Domains/ URLs/ Websites.
  • edges -> Connections.

Example:  

👁 Image

Approach: The idea behind the working of this algorithm is to parse the raw HTML of the website and look for other URL in the obtained data. If there is a URL, then add it to the queue and visit them in breadth-first search manner.  

Note: This code will not work on an online IDE due to proxy issues. Try to run on your local computer.

Output: 

Website found: https://www.google.com/
Website found: https://www.facebook.com/
Website found: https://www.amazon.com/
Website found: https://www.microsoft.com/en-us/
Website found: https://www.apple.com/

Problem caused by web crawler: Web crawlers could accidentally flood websites with requests to avoid this inefficiency web crawlers use politeness policies. To implement politeness policy web crawler takes help of two parameters:

  1. Freshness: As the content on webpages is constantly updated and modified web crawler needs to keep revisiting pages. For that freshness uses HTTP protocol to as HTTP has a special request type called HEAD which returns the information about the last updated date of webpage by which crawler can decide the freshness of a webpage. 
  2. Age: An age of a webpage is T days after it has been last crawled. On average webpage updating follow Poisson distribution and the older a page gets the more costs to crawl the web page so Age is more important factor for crawler than freshness.  

Applications: This kind of web crawler is used to acquire the important parameters of the web like: 

  1. What are the frequently visited websites?
  2. What are the websites that are important in the network as a whole?
  3. Useful Information on social networks: Facebook, Twitter... etc.
  4. Who is the most popular person in a group of people?
  5. Who is the most important software engineer in a company?


 

Comment
Article Tags:
Article Tags: