我试图了解使用 Sinatra 在 Heroku 上运行 eventmachine 所涉及的异步模式。简而言之,我想要实现的是:使用em-http创建对 twitter 流 api 的 http 请求,在流回调上,使用 websockets 解析推文并将其推送到客户端。到目前为止,一切都很好。当同一个应用程序也需要为网页提供服务时,就会出现问题。在我的 config.ru 中,除了其他 Bundler 的东西,我还有,
require 'app'
run TwitterApp
然后在我的应用程序文件中,EM 块:
EM.run{
class TwitterApp < Sinatra::Base {
get '/' do
haml :index
end
}
http = EventMachine::HttpRequest.new(url, options).get :head=>{'Authorization' => [USERNAME, PASSWORD]}
http.stream do |chunk|
#parse tweet, push using websockets
end
}
现在,似乎正在发生的事情是运行 TwitterApp永远不会到达,因为 EventMachine 使用 Reactor 模式并且永远不会返回。
或者,如果我尝试做一个
App.run!
在 EM.run 块中,一切都在本地运行良好并使用ruby app.rb运行,但使用rackup似乎运行服务器两次(一次使用 Thin,另一次使用 WEBrick)并且在 Heroku 上它崩溃了
Error R11 (Bad bind) -> Process bound to port other than $PORT
Stopping process with SIGKILL
我在这里错过了一些非常微不足道的东西吗?
非常感谢!