You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we make requests to multiple batches, we construct a Net::HTTP object again and again - which internally creates a new TCP connection for every HTTP request.
This can be improved by reusing the Net::HTTP object.
When we make requests to multiple batches, we construct a
Net::HTTPobject again and again - which internally creates a new TCP connection for every HTTP request.This can be improved by reusing the
Net::HTTPobject.