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
@@ -77,13 +77,13 @@ options.callbacks.request_after_finish = cb_request_after_finish # Called after
77
77
78
78
# Scope options
79
79
options.scope.protocol_must_match =False# Only crawl pages with the same protocol as the startpoint (e.g. only https). Default is False.
80
-
options.scope.subdomain_must_match =True# Only crawl pages with the same subdomain as the startpoint. If the startpoint is not a subdomain, no subdomains will be crawled. Default is True.
80
+
options.scope.subdomain_must_match =False# Only crawl pages with the same subdomain as the startpoint. If the startpoint is not a subdomain, no subdomains will be crawled. Default is True.
81
81
options.scope.domain_must_match =True# Only crawl pages with the same domain as the startpoint (e.g. only finnwea.com). Default is True.
82
82
options.scope.ignore_similar_requests =True# Ignore similar requests like `?page=1` & `?page=2` or `/page/1` and `/page/2`. Default is True.
83
83
options.scope.max_depth =None# The maximum search depth. For example, 2 would be the startpoint and all the pages found on it. Default is None (unlimited).
84
84
85
85
# Performance options
86
-
options.performance.max_processes=8# The maximum amount of simultaneous processes to use for crawling. Default is 8.
86
+
options.performance.max_threads=8# The maximum amount of simultaneous threads to use for crawling. Default is 4.
options.scope.max_depth=None# The maximum search depth. For example, 2 would be the startpoint and all the pages found on it. Default is None (unlimited).
71
69
72
70
# Performance options
73
-
options.performance.max_threads=16# The maximum amount of simultaneous threads to use for crawling. Default is 4.
71
+
options.performance.max_threads=8# The maximum amount of simultaneous threads to use for crawling. Default is 4.
0 commit comments