在 ruby 法拉第保持活力

keep-alive in ruby faraday

我有这样的方法:

def make_request(path, params, body)
  raise ArgumentError.new('Endpoint not set!') if url.nil?
  conditions          = {url: url}
  conditions[:params] = params unless params.blank?
  connection          = Faraday::Connection.new(conditions)
  connection.run_request(:get, path, body, {'Content-Type' => 'application/json'})
end

那我要怎么添加keep-alive呢?另外,由于我每次调用这个方法时都会实例化一个连接对象(url可能会有所不同),那么keep-alive参数是否仍然有效?

我发现了一些东西 here and here,但我自己没有测试过。

Faraday.new(uri) do |f|
  f.adapter :net_http_persistent
end

您可以保持连接创建新方法"connection"

def connection
  @connection ||= Faraday.new(@url_without_path) do |f|
                    f.adapter :net_http_persistent
                  end
end