PHP-nginx下php输出缓存刷新问题
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用memc-nginx和srcache-nginx模块构建高效透明的缓存机制
http://www.qixing318.com/article/using-memc-nginx-and-srcache-nginx-module-build-efficient-and-transparent-caching-mechanism.html
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环境测试通过.