嗨,我正在使用 puppeteer 来抓取网页(约 100 万条记录)。为了管理长时间的爬网,我正在使用 puppeteer-cluster 节点模块。
- 使用 puppeteer 启动 chromium 时已经启用了哪些标志?参数列表
- 有哪些参数可以让我提高 puppeteer 的性能?
目前我正在使用以下参数来启动铬:
args: [
'--disable-setuid-sandbox',
'--disable-dev-shm-usage',
'--disable-accelerated-2d-canvas',
'--no-first-run',
'--disable-gpu'
]