HTML Agility Pack 性能 - 加载(文件)与 LoadHTML(流)
感谢这个网站上很多人的帮助,我现在已经编写了屏幕抓取项目代码并进入测试模式。处理 html 请求似乎需要相当多的时间。所以现在我正在获取原始 html 流并将其放入字符串变量中,并使用 LoadHTML() 方法将其传递到屏幕抓取处理代码中。
我的问题是,这样做更快还是将 html 流保存到文件然后解析文件更快?
我以为流会更快,但现在我不确定。
Thanks to the help of a lot of folks on this site I got my screen scraping project code written and into test mode right now. It seems to be taking quite a bit of time to process the html requests. So right now I am taking the raw html stream and putting it into a string variable and passing that into the screen scraping processing code using the LoadHTML() method.
My question is this, is it faster to this or is it faster to save the html stream to a file, then parse the file?
I thought the stream would be faster but now I am not sure.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
直接从原始流加载应该是最快的。
如果你真的关心,你需要衡量它。
Loading directly from the original stream should be fastest.
If you really care, you need to measure it.