Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 Symfony 的 Goutte 库,它将 Guzzle、Symfony DomCrawler 和 CssSelector 组合到一个包中,以抓取一个相当简单的 HTML 表。但是,我发现它非常慢。
加载页面后,处理 20 行表通常需要大约 12-14 秒。这肯定是太长了?
我以前用过 DOM 解析库,从来没有遇到过这样的慢。我做错了什么,还是 Goutte 很慢?
事实证明 Goutte 和 DomCrawler 组件真的那么慢。我改为尝试使用 phpQuery,并看到在几分之一秒内完成了相同的工作。——</p>