Class: HttpCrawler::Proxy::TestProxyApi::Client

Inherits:
Object
  • Object
show all
Includes:
Client
Defined in:
lib/http_crawler/proxy/test_proxy_api/client.rb

Instance Method Summary collapse

Instance Method Details

#get_proxy(parameter = {}) ⇒ Object



23
24
25
26
# File 'lib/http_crawler/proxy/test_proxy_api/client.rb', line 23

def get_proxy(parameter = {})
  r = http.get("/api/get_proxy")
  r.extend(HttpCrawler::Proxy::TestProxyApi::Response::GetProxy)
end

#init_uriObject

这是个错误代码 http类不能唯一,如果唯一的话高并发情况下会导致前一个请求未结束,下一个请求已经在发送,会出现冲突class << self

def new(*args)
  @client ||= super(*args)
end

end



18
19
20
# File 'lib/http_crawler/proxy/test_proxy_api/client.rb', line 18

def init_uri
  @uri = URI("http://127.0.0.1:1111/")
end