我有一个在localhost上运行的faye服务器(nodejs),我正在尝试设置一个服务器端ruby客户端,它需要定期在服务器上发布。这是我试图使用的代码。
(请忽略开头的评论代码)
我创建了一个类变量@@client
,并在类加载后立即对其进行初始化。我定义了一个类方法pub
,其任务是在faye服务器上发布一些东西
最后,我只是调用pub
方法两次。第一个发布回调已成功收到,但第二个出版物未生成callback
或errback
。由于控件没有返回给应用程序,应用程序只是挂在那里
如果我创建了gobal变量$client
(当前已注释),则行为是相同的。但是如果我每次调用pub
时都会创建客户端,那么发布会顺利进行。我在EM.run
循环或外部启动它,行为是相同的。 (正如预期的那样)
我不希望每次想要发布某些内容时都会建立新的连接,因为这会破坏目的。此外,如果我每次调用方法时都在EM.run
中创建一个新客户端,则客户端连接不会自行关闭。我可以在lsof
命令中看到它们作为打开文件打开,很快我就会开始收到too many open files
错误。
我并没有真正理解Event Machine,也许我错过了那些东西。
require 'faye'
require 'eventmachine'
# $client = Faye::Client.new('http://localhost:5050/faye')
class Fayeclient
puts "#{__LINE__}: Reactor running: " + EM.reactor_running?.to_s
# if !defined? @@client or @@client.nil?
@@client = Faye::Client.new('http://localhost:5050/faye')
puts "Created client: " + @@client.inspect
# end
def self.pub
puts "#{__LINE__}: Reactor running: " + EM.reactor_running?.to_s
# client = Faye::Client.new('http://localhost:5050/faye') #$client
# client = @@client
EM.run {
#client = Faye::Client.new('http://localhost:5050/faye') #$client
puts "#{__LINE__}: Reactor running: " + EM.reactor_running?.to_s
puts @@client.inspect
publication = @@client.publish('/foo', 'text' =>'Hello world')
puts "Publishing: #{publication.inspect}"
# puts "Publication methods: #{publication.methods}"
publication.callback do
puts "Did it #{publication.inspect}"
EM.stop_event_loop
puts "#{__LINE__}: Reactor running: " + EM.reactor_running?.to_s
# puts "#{client.methods}"
# puts client.inspect
# client.remove_all_listeners
# puts client.inspect
end
publication.errback do |error |
puts error.inspect
EM.stop_event_loop
end
}
puts "Outside event loop"
puts "#{__LINE__}: Reactor running: " + EM.reactor_running?.to_s
end
end
Fayeclient.pub
Fayeclient.pub
答案 0 :(得分:5)
EM.run
调用是阻塞的,你必须在一个单独的线程上运行它,并在最终结束时最终加入它。在示例中,我使用的是Singleton,但这取决于您。
这可以正确地完成2次faye电话。
#!/usr/bin/env ruby
#
require 'faye'
require 'singleton'
require 'eventmachine'
class Fayeclient
include Singleton
attr_accessor :em_thread, :client
def initialize
self.em_thread = Thread.new do
EM.run
end
self.client = Faye::Client.new('http://localhost:8890/faye')
end
def pub
puts "#{__LINE__}: Reactor running: " + EM.reactor_running?.to_s
puts client.inspect
publication = client.publish('/foo', 'text' =>'Hello world')
puts "Publishing: #{publication.inspect}"
publication.callback do
puts "Did it #{publication.inspect}"
EM.stop_event_loop
puts "#{__LINE__}: Reactor running: " + EM.reactor_running?.to_s
end
publication.errback do |error |
puts error.inspect
EM.stop_event_loop
end
end
end
Fayeclient.instance.pub
Fayeclient.instance.pub
Fayeclient.instance.em_thread.join
根据我的个人经验,无论如何,在Rails应用程序中处理EventMachine可能会很乱,有些Web服务器使用EM,其他情况则不然,而当您想要从控制台进行测试时,它可能无法按预期工作。
我的解决方案是回退到http调用:
RestClient.post "http://localhost:#{Rails.configuration.faye_port}/faye", message: {foo: 'bar'}.to_json
如果您不需要从这段代码接收消息,我发现这个解决方案更简单,更容易定制。