gpt4 book ai didi

Symfony StreamedResponse 服务器发送事件阻止请求

转载 作者:行者123 更新时间:2023-12-02 15:44:22 25 4
gpt4 key购买 nike

我在 Symfony 中使用 StreamedResponse 实现了服务器发送事件 (SSE)。因此,当事件发生时, session 中会保存一条消息,该消息将通知给用户。问题是,当执行包含客户端代码的页面时,它会阻止对应用程序的所有 Web 请求,直到 SSE 连接由于最大执行时间而关闭。

服务器端代码:

public function notificationAction() {
$response = new StreamedResponse(function() {
while(true) {
$message = "";

$messagesNotification = $this->get('session')->getFlashBag()->get('message_notification');; // code that search notifications from session
if(count($messagesNotification)>0){
foreach ( $messagesNotification as $messageNotification ) {
$message .= "data: " . messageNotification . PHP_EOL;
}
$message .= PHP_EOL;
echo $message;
ob_flush();
flush();

}
sleep(8);
};

});

$response->headers->set('Content-Type', 'text/event-stream');
$response->headers->set('Cache-Control', 'no-cache');
return $response;
}

客户端代码:

<script>
var path = '/path';
var source = new EventSource(path);
source.onmessage = function(e) {
// notification html
};
source.onerror = function(e) {
// notification html
};
</script>

我想知道这是否是SSE的良好实现,以及如何使SSE调用不阻塞请求。

我使用 symfony 2.6 和 Firefox 作为浏览器。

预先感谢您的帮助。

最佳答案

您隐式使用 $this->get('session')

session_start() 将锁定 session 的文件(如果您使用 native 文件 session 处理程序,默认情况下)直到你用

编写它
$this->get('session')->save()

只有这样文件才会被解锁。尝试在 sleep(8); 上面使用它。

关于Symfony StreamedResponse 服务器发送事件阻止请求,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33351643/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com