orbednetwork / chrome-rest-client

Automatically exported from code.google.com/p/chrome-rest-client
0 stars 0 forks source link

Varies response time #154

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1.Send any request
2.observe the response time for each iteration
3.

What is the expected output? What do you see instead?
Response time is not same for the same request. sometimes the difference will 
be 100ms  

On what operating system, browser and browser version?
Win7 chrome V24.0

Please provide any additional information below.

Original issue reported on code.google.com by myg...@gmail.com on 1 Feb 2013 at 4:18

GoogleCodeExporter commented 9 years ago
It is natural behavior. The app starts measuring the time just before the 
request is send to the server and it stop just after "completed" event is 
captured by the app.
There is possibility that the app itself may change this time (eg. temporary 
overload of the processor or whatever) but mostly it measure real time of the 
request (send, server response, receive).
Most probably you noticed different time of server response (it is actually 
very common because it depends of server load) or delays on the network.
Anyway, it is nothing that I can deal with.

Original comment by jarro...@gmail.com on 9 Feb 2013 at 12:49