xenial-black•2y ago
EnqueueLInks
It is possible to add delay's in enqueueLinks? like before to crawl a certain URL I want to add some delay.
5 Replies
You can delay any request in the
preNavigationHooks
. Just keep in mind that Crawler is scaling concurrency based on the CPU utilization so it will not influence maxConcurrency
Hi @Banul; There is basic example to the Lukas's suggestion:
xenial-blackOP•2y ago
hmm does cheerioocrawler has a preNavigationHooks?
Yes. You can always find that in the docs https://crawlee.dev/api/cheerio-crawler/interface/CheerioCrawlerOptions
xenial-blackOP•2y ago
Oh I didn't see this. Thanks for this I thought preNavigationHooks option is only for PlaywrightCrawler. Again Thank you !