I'm currently trying to write down a concept how I could solve following thing:
In Java I'm currently scraping a web-page with articles. If any of these articles get available or change somehow it should give me an alert. The scraping of all the articles is pretty fast. But I actually also want to implement that it also checks every article itself if like a size of an article got available. But since this is just another page open for every article it will take much longer. (This is actually another problem which I need to solve)
Now my current question is, how could I found out if something has changed? Would it be a good aproach to save every article in a database. On the next check it would save all the articles in another database and compare them? Like saving all every article in a bean and then in an array and compare the two arrays if they are different?
I currently don't really see a light at the end of the tunnel how I could solve that in a good and beautiful way.
Every comment would be appreciated. thanks in advance