I'm trying to create a webcrawler that continuously crawls the web looking for webpages that contain certain keywords. There are a lot of open source solutions for this (Nutch, Scrapy et cetera), but I need an intelligent one that can prioritize 'rich' sources.
I want the bot to start at a certain page, f.e. http://www.dmoz.org, extract all links and continue scraping them. Now if the page contains a certain keyword, f.e. 'foo', it should send this url to a database.
Now, here comes the hard part. If I create and run a bot like this it can take ages before the spider finds new pages containing the specified keywords, since it's crawling the whole web. The process would be dramatically faster if the spider could identify on what domain it often finds the keywords so these can be crawled more often.
Is there an open source solution for this?
So far I've looked at Nutch and Scrapy. Nutch looks to be the best option for what I need, but I don't have any experience with Java and I can't find any specific documentation about this problem.