PHP-nginx下php输出缓存刷新问题

发布于 2016-12-28 06:19:46 字数 395 浏览 1213 评论 2

    <?php
//以确保到达output_buffering值。
print str_repeat(" ", 4096);

// filename:echo.php
echo "this is the first line <br />";
ob_flush();
flush();
sleep(2);
echo "this is the second line <br />";
ob_flush();
flush();
sleep(3);
echo "this is the third line <br />";
?>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

晚风撩人 2017-10-07 10:27:28

使用memc-nginx和srcache-nginx模块构建高效透明的缓存机制
http://www.qixing318.com/article/using-memc-nginx-and-srcache-nginx-module-build-efficient-and-transparent-caching-mechanism.html

归属感 2017-08-20 13:43:14

nginx需要在nginx.conf里设置:

gzip off;
fastcgi_buffer_size 4k;
fastcgi_buffers 8 4k;

php代码:

 <?php
set_time_limit(0);
ob_end_clean();
ob_implicit_flush(1);

for($i = 0; $i < 10; $i++){
echo $i . "<br />n";
echo str_repeat(' ', 1024*4);
sleep(1);
}

我的nginx环境测试通过.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文