We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
当发送数据超过8k大小的时候,抓包看每次发送的分片数据最大就是8200,导致会出现多个流,syslog接收后不能组成一个日志数据丢失。 这里主要是php的stream默认分块大小就是8192。
目前我是在每个php_stream_write 调用出加上了 php_stream_set_chunk_size
php_stream_write
php_stream_set_chunk_size
The text was updated successfully, but these errors were encountered:
No branches or pull requests
当发送数据超过8k大小的时候,抓包看每次发送的分片数据最大就是8200,导致会出现多个流,syslog接收后不能组成一个日志数据丢失。
这里主要是php的stream默认分块大小就是8192。
目前我是在每个
php_stream_write
调用出加上了php_stream_set_chunk_size
The text was updated successfully, but these errors were encountered: