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.
我需要非常快速地调用两三个已知的 URL。我正在编写一个速度至关重要的命令行应用程序!
curl 会自己打开一个套接字吗?
有没有基准?
我会说你最好使用 cURL(是的,它会打开自己的套接字),因为它比使用 fsockopen() 拼凑非标准客户端更了解 HTTP,朋友们可能会。
好吧——如果你真的需要超快的 HTTP 加载性能(定义“非常快”),你就必须使用 PHP 以外的东西。
编辑:页面是否经常更改?如果没有,(mem)在本地缓存它们的内容,你应该不会有太多问题。