-
I am wondering if it's possible to run a crawler forever? I cannot set infinity on |
Beta Was this translation helpful? Give feedback.
Answered by
B4nan
Oct 31, 2022
Replies: 1 comment 1 reply
-
In latest, version you can use |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
galaczi
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In latest, version you can use
keepAlive: true
in crawler options, that will keep the crawler running even if the request queue is empty. You can shut it down viacrawler.teardown()
afterwards.