Measurement of time spent from sending the request until received a response
Questions tagged [response-time]
219 questions
0
votes
1 answer
Why the response time is shorter after the same program is excuted many time in Java?
The response time of a Java program reduces after it is repeated many times. What is the reason for it? Is the following explanation correct?:
The total execution time includes code generation time + garbage
collect time + execution time. After…

susanna
- 1,395
- 3
- 20
- 32
-1
votes
1 answer
Webview - Cache webapp data for further (next time use)
we recently received a request as following -
While loading a webapp (https://192.1.../poc/test.jsp) in android or iOS webview. It's taking some time while loading 1st time because of js, image, css etc files takes time to download including some…

Pankaj
- 833
- 12
- 35
-1
votes
2 answers
MySQL Scaling on GCP
I created a instance (8 core) of MySQL on GCP. And a simple database in it. When I run a load of 40000+ concurrent users (1500 req/sec), the response times come out very high (10 seconds+). However I can see the hardware cpu utilization only at 15%…

Deepak Goel
- 11
- 2
-1
votes
1 answer
How can we Reduce response time for face_recognition python script given below?
import face_recognition
known_image = face_recognition.load_image_file("passport.png")
unknown_image = face_recognition.load_image_file("myphoto.png")
biden_encoding = face_recognition.face_encodings(known_image)[0]
unknown_encoding =…
-1
votes
1 answer
How to measure response time of an api when it is being called from threadpool thread.( java spring boot)
I have a threadpool in which threads are calling an api with different bodies. Its a post call. Currently I am mesauring response time like this.
long start = System.currentTimeMillis();
restTemplate call.
long end =…

yatharth govil
- 1
- 2
-1
votes
1 answer
Finding End user response time in Jmeter
How can we capture the end user response time in JMeter?
If there is any plug-ins available?
Can u please help me.

Ratna
- 1
-1
votes
1 answer
Running response time tests on php code - how much is 7.2E-5 microseconds?
Hi guys I'm using microtime() function of php to tell how long certain snippets of code take to run I do this by taking the time before and after the snippet and subtracting them using microtime function.
I got the following results though for the…

Ali
- 7,353
- 20
- 103
- 161
-2
votes
2 answers
Site loading too slowly
In the last few months I've noticed that my site is taking a very long time to load.
Firebug tells me that the longest time is waiting for the response from the server (sometines it just waits for 30s!).
Tha strange thing is that some times it loads…

Sean Bone
- 3,368
- 7
- 31
- 47
-2
votes
1 answer
NodeJs Real Response Time
Threw nodejs,I have a problem in calculating express api response time.
instead of using middlewares like morgan and winston using app.use(). I need a way to log response time inside api scope and send it as a response.
like :
app.post('/api',…

Reza Ghorbani
- 537
- 4
- 14