Questions tagged [response-time]

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

219 questions
0
votes
1 answer

how to speed up laravel?

I have a PHP Application and I use Laravel Framework. When I'm developing the application its response time is not an issue. But, when I deployed it and it gets a lot of data in one of its transaction table (almost 7,000 rows as of this time) in the…
0
votes
2 answers

psychopy logging time when participant stopped moving cursor

I am using a rating scale. Participants use the 't' and 'b' keys to move the cursor along the scale. Each trial is currently 6 seconds long. If a participant stops pressing 't' or 'b' before 6 seconds are up, I want to log the time of the last…
Maria
  • 1,247
  • 1
  • 13
  • 21
0
votes
0 answers

Rails app: Trouble shooting frequent Handling RequestTimeOut errors

I have a large webb app of which I have recently been working hard to reduce load times. I have two controllers Generator (some 20.000 items) and Product (some 1.500 items) that have been slow for a while but I have worked with indexes and smart…
Christoffer
  • 2,271
  • 3
  • 26
  • 57
0
votes
1 answer

Online application calling Web service

In an application where there are say 1000 simultaneous users, would it be advisable to call a web service as a part of the request or fetch data from web service offline using a job and store it in your database? I am confused between these two…
Sid
  • 43
  • 7
0
votes
1 answer

Issue with Response time from Parse

Currently I am working with an iOS app which has some features to work with File datatype. I need to upload the images on Parse and also download the images from parse. Here I am facing issues with the response time that parse gives me. When I…
iGatiTech
  • 2,306
  • 1
  • 21
  • 45
0
votes
1 answer

Query performance differs with just date change in where clause

I have this SQL SELECT ABS(a.cantidad - ISNULL(b.cantidad, 0)) as cantidad, a.codarticulo, a.codalmacen, a.codarticulotallaje FROM (SELECT ABS(ISNULL(SUM(cantidad), 0)) AS cantidad, movimientos.codarticulo,…
Zitu
  • 5
  • 3
0
votes
1 answer

Measure response time in java (web service)?

I'm trying to measure the response time for a "process" (I'm requesting data from a server and then presenting the data). I want to measure the time it takes from when I ask for the data (when I press the "send" button) to when the data is displayed…
cssprobs
  • 35
  • 1
  • 4
0
votes
1 answer

jmeter response times using Response Time over Time

I'm new to JMeter (with a solid 5 days experience!) and so would like a little guidance if that's ok. I've been trawling through the jmeter help and I did search (prior to submitting this request) for other response times questions, however I don't…
sqeeky
  • 165
  • 1
  • 4
  • 18
0
votes
0 answers

Java: Throughput increase with increasing message size?

I have built a distributed client-server-database Java application based on sockets. The clients sends serialized objects to the servers (currently there are two servers) and the servers deserializes the objects and stores some content of the object…
machinery
  • 5,972
  • 12
  • 67
  • 118
0
votes
0 answers

Measure Response Time ASP.net

I have an ASP Web Service (.asmx) which simply gets a SOAP Request with a query string, executes it on the database, and returns either the data, or the rows affected. I want to log the response time it takes the server to reply in a Log Table on…
0
votes
1 answer

Maven tests for web application response time?

I have a webapp that recently started to show slowness even when the homepage is loaded in the browser. Since I'm using Maven to manage it, I thought I could add some simple test to check the load time of the homepage or of a specific page — I never…
watery
  • 5,026
  • 9
  • 52
  • 92
0
votes
0 answers

What can I do to speed up the ruby execution time on a heroku server?

So I got a rails app deployed on heroku. Nothing fancy going on, just a small custom cms, just used for uploading and editing static pages. Most of the time is just spent displaying pages, stored in the db. There is a bit of a heavy load for each…
Conkerchen
  • 720
  • 1
  • 4
  • 15
0
votes
2 answers

Restful response time varies irrespective of the input size?

I created a simple rest service POST method that consumes a XML. I created a REST client with Jersey and created my object and i am trying to see the variations in response time by increasing my XML length, by giving larger inputs to my objects.…
Sara
  • 33
  • 1
  • 10
0
votes
2 answers

Stop an ajax call if it takes to much to complete

I have a search capability on my webpage where it searches for something on my DB using Ajax and returns results placing them on a modal box on the success function. After they are loaded it shows the modal. I am using django as a backend. Is there…
Apostolos
  • 7,763
  • 17
  • 80
  • 150
0
votes
1 answer

Web application Performance - Reducing DB Calls

I have multiple SQL select queries (Which i need to call multiple times) all returning similar result sets with Type and value as two selected columns(Column names are different in each table but same datatype).However the selection criteria (where…