You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
some resources, like favicon.ico are requested from every page, would be good to store the url only once and make a derived table which links the parent pages that link to this url, so if a broken link occurs, it is only stored once, but you know which parent pages are impacted by this broken link (and may need to be updated)
if a broken link is identified
verify if the link is already on the database, else insert it
insert the parent page to the database, referencing the link
At some point the checker can be smarter and skip links which have been previously tested (in the same run)
classDiagram
Links <|-- test
Links <|-- parent
class Links{
- id_link
- tested_url
- average-availability
- status
}
class parent{
- parent_url
- fk_link
}
class test{
- timestamp
- test_result
- fk_link
}
Loading
The text was updated successfully, but these errors were encountered:
some resources, like favicon.ico are requested from every page, would be good to store the url only once and make a derived table which links the parent pages that link to this url, so if a broken link occurs, it is only stored once, but you know which parent pages are impacted by this broken link (and may need to be updated)
At some point the checker can be smarter and skip links which have been previously tested (in the same run)
The text was updated successfully, but these errors were encountered: