我对rails ActionController::Live
最后,我想向用户展示FFMPEG的进展,但是现在我想让这个最小的例子运行:
Rails media_controller.rb:
class MediaController < ApplicationController
include ActionController::Live
def stream
puts "stream function loaded"
response.headers['Content-Type'] = 'text/event-stream'
i = 0
begin
response.stream.write "data: 1\n\n"
sleep 0.5
i += 1
puts "response... data: " + i.to_s
end while i < 10
response.stream.close
end
end
使用Javascript:
source = new EventSource("/test/0");
source.addEventListener("message", function(response) {
// Do something with response.data
console.log('I have received a response from the server: ' + response);
}, false);
当我导航到该网站时,没有显示JavaScript错误。一旦我导航到该站点,就会成功调用&#34;流&#34; -Action of MediaController。我可以通过查看Server-Console来验证这一点。它给了我以下输出。在每个响应行之后,有一个500毫秒的延迟,就像预期的那样:
stream function loaded
response... data: 1
response... data: 2
response... data: 3
response... data: 4
response... data: 5
response... data: 6
response... data: 7
response... data: 8
response... data: 9
response... data: 10
Completed 200 OK in 5005ms (ActiveRecord: 0.8ms)
在JavaScript方面,它为我提供了以下输出:
(10x) I have received a response from the server: [object MessageEvent]
但问题在于,它会在5秒同时后从服务器发送所有这10条消息!然而,预期的行为是,它应该每0.5秒向我发送一条消息!
那我在这里做错了什么?错误在哪里?
答案 0 :(得分:0)
我可以通过使用其他Web服务器来解决此问题。之前我使用thin
,我发现了Post on SO:
您无法
一起使用AC::Live
与Thin
gem 'puma'
可在此处找到解释:
https://github.com/macournoyer/thin/issues/254#issuecomment-67494889
Thin不能使用流媒体和ActionController :: Live。
与Thin配合使用的唯一方法是使用异步API: https://github.com/macournoyer/thin_async。 Thin是专门为这种东西构建的并且可以扩展。
或者更简单,请使用:https://github.com/SamSaffron/message_bus。
所以切换到另一台服务器解决了这个问题:
rails s Puma
从
开始AutoSize