Questions tagged [response-time]

Measurement of time spent from sending the request until received a response

219 questions
4
votes
4 answers

How to measure response-time of network using Java?

We have a client and a server. I want to measure the response-time of the network between them. When I send a request to server it should immediate respond to my request, it should be like a ping request so that there will be no processing time at…
4
votes
1 answer

Multi-Field Querying on Redis Using Redis Spring

this will be a very baic question since im new to Spring-Redis Im currently in the process of learning about Redis database and I'm working on a feature on priority, im compelled to Use Redis for this feature. Below in the challenge/Query im…
U C
  • 137
  • 2
  • 8
4
votes
2 answers

Equivalent java code to measure response time of server

what are the equivalent java api s that I should be using for the following C# code please? What i need is to check the response time. HttpWebRequest request = (HttpWebRequest)WebRequest.Create(address); System.Diagnostics.Stopwatch timer = new…
nadh
  • 1,211
  • 3
  • 11
  • 6
4
votes
2 answers

Response time for a UIButton

I have developed a test for iPod/iPhone (with MonoTouch if that is relevant) that measures reaction time. But I need to take into consideration the time between touching the screen and actual triggering of the button event. Is there any…
devk
  • 324
  • 1
  • 7
4
votes
5 answers

How Throughput and Response time are related

I ran a JMeter test for 193 samples where I could see my average response time as 5915ms and Throghput as 1.19832. I just want to know how are they exactly related
B.Mishra
  • 117
  • 1
  • 3
  • 9
4
votes
1 answer

web server running inside a docker container running inside an EC2 instance responses very slowly

I have a web server running inside a docker container in AWS EC2 Ubuntu instance. When I send requests to the web server, I get the response very slowly (20+ seconds most of the times, although the response time varies). It does not time-out though.…
4
votes
3 answers

Making a DNS request using Java and timing the response

Could some one show me how I can make a DNS request to a particular DNS server and get the response as well as the response time? I intend to use this in an signed applet. Is this allowed in an applet?
Mridang Agarwalla
  • 43,201
  • 71
  • 221
  • 382
4
votes
1 answer

Slow Nested RenderPartial Response times

I have an asp.net view/page (dynamic) that is built up of nested Html.RenderPartials. The view is sent an appropriate viewmodel to render. Firebug says the GET response for the HTML is 9.89 secs for 9.5KB. To compare the FAQ page (static html) of…
Anthony
  • 61
  • 1
  • 5
4
votes
1 answer

What is the maximum time a web application (or website) should respond to a request?

I'm aware that a web application should render it's pages as fast as possible, with few database requests only in milliseconds. What are the guidelines about this response time (like Microsoft guidelines for UI or something like that)? What is the…
kissgyorgy
  • 2,947
  • 2
  • 32
  • 54
4
votes
1 answer

What is an elegant way to monitor average response times in IIS 7.5?

I have a SaaS application running on .NET and IIS 7.5. I'd like to monitor average server response time and send an alert if it exceeds a given threshold. What are some elegant ways to do this? I've thought of a few ways already, but I wanted to get…
Mike
  • 7,500
  • 8
  • 44
  • 62
4
votes
0 answers

Measuring response time in open rasta

What is the best way to do this? I was thinking about something like: public void Initialize(IPipeline pipelineRunner) { pipelineRunner .Notify(CaptureRequestStartTime) .Before(); …
Nick
  • 1,845
  • 3
  • 15
  • 22
3
votes
3 answers

Node.js response time >= 200ms?

I am working on a Node.js workload test and I have just encountered an interesting behavior. The minimum response time of an HTTP server is 200 ms, even for simplest logic: var http = require("http"); http.createServer(function(request, response)…
tamasf
  • 1,068
  • 2
  • 10
  • 22
3
votes
1 answer

dispatch.yaml in Google App Engine has increase the response time

Based on 100 requests. Region: southamerica-east1 When executing a GET at xxx.appspot.com/api/v1/ping the average response time is +/- 50 ms. Example: Load time: 83 ms When activating dispach.yaml (gcloud app deploy dispatch.yaml) and executing…
3
votes
1 answer

python django response time long but don't know what's wrong

My django app use django-rest-framework, and MySQL. I tested my app, but almost functions had long response time. I don't know what is the problem. This is one of most long response time functions. 180232 function calls (171585 primitive calls)…
Jrog
  • 1,469
  • 10
  • 29
3
votes
0 answers

Http(s) requests sometimes take very long on Apache 2.4, Windows server 2012 and PHP 7

I have been searching for a solution for my problem a long time and tried many proposed solutions but to no end yet. The Problem I have several websites (4) on my webserver using virtual hosts. Most of the time it works fine but sometimes (around…
Wouter T
  • 71
  • 1
  • 3
1
2
3
14 15