-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
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
流式返回前端不起作用,阻塞住了,等后端接受完所有流式数据,前端才会开始接收sse事件消息 #36
Comments
前端是否使用了nginx,如果使用了需要关闭缓存相关的配置。 SseListener sseListener = new SseListener() {
@Override
protected void send() {
// ......
try {
Thread.sleep(10);
} catch (InterruptedException e) {
throw new RuntimeException(e);
}
// ......
}
}; |
|
LnYo-Cly
added a commit
that referenced
this issue
Feb 14, 2025
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: