Custom/extendable CrawlUrl
#430
Unanswered
rudiedirkx
asked this question in
Q&A
Replies: 1 comment
|
If you want to keep track of wich url links to any other url you can use to $foundOnUrl param in your observer. |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
I want to keep detailed track of crawled pages: number of references, response content-type & http code, etc. I can keep those in my own list of crawled URL objects, but that's A LOT of redundancy. Even in the current queue every URL is saved 3 times: array key,
CrawlUrl->url,CrawlUrl->id. I don't want to add even more, but I do want to add a few stats per URL. With an custom/extendableCrawlUrlI could add those efficiently.I haven't actually tried to keep track of references yet. Is that possible? I want to know how many pages link to
/contact.html, or/help/bla.html, or/files/bestpdf.pdfetc.Extendable? Extendible? Extensible? You know.
All reactions