My problem is that the website I built with django has 100s of links to YouTube videos so that we can embed them in our pages.
I don't want to validate that the urls exist in the template because that seems to be a waist of resources. Is there a way to test all of the links once a day and put a flag on them in the MySQL database? This way the bad links wouldn't even be looked at by the templates, which should speed up page load times.
Any ideas would be greatly appreciated.