Robert Lu created THRIFT-4354:
---------------------------------
Summary: TSocket block on read
Key: THRIFT-4354
URL: https://issues.apache.org/jira/browse/THRIFT-4354
Project: Thrift
Issue Type: Bug
Components: PHP - Library
Affects Versions: 0.10.0, 0.9.3
Environment: php7.0 + macOS
Reporter: Robert Lu
Assignee: Robert Lu
When \Thrift\Transport\TSocket::read is called, it will block until receive
$len
byte([TSocket.php#L273-L276|https://github.com/apache/thrift/blob/master/lib/php/lib/Thrift/Transport/TSocket.php#L273-L276])
But, sometimes, other call TSocket::read with large length,
such as
[TBufferedTransport|https://github.com/apache/thrift/blob/39310dad793ca69b4b7217a3b54430e682e5e2a4/lib/php/lib/Thrift/Transport/TBufferedTransport.php#L136-L138]:
{code:php}
if (TStringFuncFactory::create()->strlen($this->rBuf_) === 0) {
$this->rBuf_ = $this->transport_->read($this->rBufSize_);
}
{code}
--
This message was sent by Atlassian JIRA
(v6.4.14#64029)