服务器发送事件PHP阻塞流程
作者:互联网
我不知道它是否有问题但是,我正在使用服务器发送事件而不是aj从php执行javascript.一切正常,除了在服务器端睡眠,保持事件源阻止网页流.
我做了一个非常简单的代码来测试,我得到了相同的结果.
我将把代码放在上面.
服务器发送事件挂起页面流?它不像ajax那样做异步请求吗?
主要问题是:服务器发送事件挂起代码流,我的意思是,每当eventSouce打开连接或接收消息时,页面等待EventSource保持代码执行.当我在服务器端代码上睡眠时,我可以看到这个清楚,我的页面停止睡眠时间,运行3秒钟,然后再次挂起.
当我进行ajax调用时,调用是异步的,因此代码在后台继续运行ajax,即使我在服务器端调用了睡眠.
我希望你能理解现在= p
test.php的
@set_time_limit(0);
//send the proper header
header('Content-Type: text/event-stream');
header('Cache-Control: no-cache');
if(function_exists('apache_setenv')){
@apache_setenv('no-gzip',1);
}
@ini_set('zlib.output_compression',0);
@ini_set('implicit_flush',1);
for($i = 0; $i < ob_get_level(); $i++){
ob_end_flush();
}
ob_implicit_flush(1);
$startedAt = time();
do {
$time = time();
echo "id: $startedAt " . PHP_EOL;
echo "data: {\n";
echo "data: \"msg\": \"$time\", \n";
echo "data: \"id\": $startedAt\n";
echo "data: }\n";
echo PHP_EOL;
//@ob_flush();
@ob_end_flush();
@flush();
usleep(0.5*1000000);
} while(true);
HTML
if(!!window.EventSource) {
var source = new EventSource('test.php');
source.addEventListener('open', function(event) {
console.log('open');
}, false);
source.addEventListener('message', function(event) {
var data = JSON.parse(event.data);
console.log(event.data);
},false);
}
解决方法:
当Daniel回答自己时,问题可能在于会话锁定.
session_write_close();
也解决了我的问题.
标签:php,multithreading,server-sent-events 来源: https://codeday.me/bug/20190628/1320766.html