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.
我试图在一小时内使用 PHP 发送大约 5000 个 HTTP POST 请求,并获取一个 JSON 数据作为每个请求的响应。我已经知道以下四种方式:
我的问题是我不知道在获得最佳性能的情况下应该使用哪一个。
先感谢您。
这些没有区别。一个 POST 就是一个 POST,不管你怎么做,99% 的时间都花在了网络上。
如果您需要发出这么多请求,请考虑从命令行运行您的脚本。然后您可以同时多次启动同一个命令行。