Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
14 lines (9 loc) · 577 Bytes

2.1.19 - Server->sendwait.md

File metadata and controls

14 lines (9 loc) · 577 Bytes

Server->sendwait

同步地向客户端发送数据。

有一些特殊的场景,Server需要连续向客户端发送数据,而Server->send数据发送接口是纯异步的,大量数据发送会导致内存发送队列塞满。

使用Server->sendwait就可以解决此问题,Server->sendwait会等待连接可写。直到数据发送完毕才会返回。

bool Server->sendwait(int $fd, string $send_data);

sendwait目前仅可用于SWOOLE_BASE模式
sendwait建议只用于本机或内网通信,外网连接请勿使用sendwait