Crates.io | spider_worker |
lib.rs | spider_worker |
version | 2.13.7 |
source | src |
created_at | 2023-03-10 21:26:36.958866 |
updated_at | 2024-11-09 18:28:04.558003 |
description | The fastest web crawler as a worker or proxy. |
homepage | |
repository | https://github.com/spider-rs/spider |
max_upload_size | |
id | 806750 |
size | 103,361 |
A spider worker to decentralize the crawl lifting.
This project depends on the spider crate.
The worker starts on port 3030 and the scraper for html gathering on 3031 by default.
SPIDER_WORKER_PORT=3030 SPIDER_WORKER_SCRAPER_PORT=3031 cargo run
scrape
- When the html is needed run the instance with the flag. Requires spider feature flag matching on the client to start. This also starts the instance on port 3031 instead.full_resources
- Start the basic worker to gather links and scraper together.tls
- Enable tls support use the env variables SPIDER_WORKER_CERT_PATH
for the .pem
file and SPIDER_WORKER_KEY_PATH
with your .rsa
file. Defaults to /cert.pem
and /key.rsa
.By default the instance runs on port 3030
use SPIDER_WORKER_PORT
to adjust the port.
The scraper runs on port 3031
when enabled use SPIDER_WORKER_SCRAPER_PORT
to adjust the port.