0

我试图更好地理解以下涉及 EventMachine 的代码行。努力学习 Ruby。

EventMachine.run 在这段代码中做了什么?

|chunk| 是什么意思?在这种情况下意味着什么?

另外,'while line'有什么作用?line 是 Ruby 语法吗?我似乎找不到任何与此相关的东西。

#create an HTTP request ob to URL above with user authorization
EventMachine.run do
  http = EventMachine::HttpRequest.new(url).get :head => { 'Authorization' => [ user, password ] }

# Initiate an empty string for the buffer
  buffer = ""

# Read the stream by line
  http.stream do |chunk|
    buffer += chunk
    while line = buffer.slice!(/.+\r?\n/) #cut each line at newline
      handle_tweet JSON.parse(line) #send each tweet object to handle_tweet method
    end

  end
end
4

1 回答 1

0

您可以使用调试器。诸如 ruby​​-debug 之类的调试器的目的是让您在 Ruby 程序执行时查看它“内部”发生的情况。或者你可以使用记录器。Logger 提供了一个简单但复杂的日志记录实用程序,您可以使用它来显示输出消息。

于 2012-05-02T05:47:24.327 回答