难道nodejs的http模块不能一次接收/发送整个请求/响应吗?
Isn't the http module of nodejs capable of receiving / sending the whole request / response at once?
我正在学习 nodejs
的 http
模块。我在 documentation 中找到了一个部分:
The interface is careful to never buffer entire requests or responses
这是否意味着该模块无法一次接收/发送整个请求/响应,而是分块接收/发送?
我正在学习 nodejs
的 http
模块。我在 documentation 中找到了一个部分:
The interface is careful to never buffer entire requests or responses
这是否意味着该模块无法一次接收/发送整个请求/响应,而是分块接收/发送?