posting this question again.I have started with the crawler , but i am stucked with the indexing part.I want an efficient and fast way to index the links.Currently what i am doing is i am inserting the links into the database , but checking for unique links is overhead so can anyone suggest me any better way to do this.
Hi I am trying to build a website crawler , which will crawl the whole website and get all of the links within it.Something very similar to "XENU". But I am not able to figure out how to go for it. I have one algorithm in my mind but that would be very slow, it is mention below.
- Get the source of home page.
- Get all the anchor tag from the source.
- Get the URLs from the anchor tag.
- Check if the url belongs to the same site or external site.
- Get the source for the urls we found in the above process and mark those urls as checked.
- Repeat the process until there are no un marked urls.
This is some what rough idea of what I came up with. But it will be very slow. So can any one suggest me some other approach or enhance this algorithm.
Regards, Sagar.