-4
votes
2answers
52 views

Site is loading slowly. Is javascript the culprit?

I suspect my site is loading slowly because of the numerous javascript references. Would it be more efficient and proper if I combined all of the javascript files into one one file? <script ...
0
votes
1answer
115 views

Ajax request delay 1 second

This time my problem is delay between ajax request, and php file response.I have checked it out with google chrome statistics, and it shows almost always exact 1 second wait time every time function ...
0
votes
0answers
29 views

Which part belongs to the request timing and which belongs to the response timing?

With Google Speed Tracer you can see the request timing and response timing. Unfortunatly Google doesn't describe what they exactly mean. The light area is the request timing and the dark area is the ...
0
votes
1answer
166 views

$.ajax in wordpress - Slow and not caching

I'm having troubles with a script, related to wordpress and ajax.. I think it loads really slow, and if I click a clicked link, it takes the exact same time (not caching) What I'm doing is, loading ...
1
vote
0answers
161 views

Jersey response very slow

I am using jersey for REST service, and during measuring request time I encountered a delay in the response which seems to come from jersey itself. While the computation of the request is about 8 ...
1
vote
0answers
366 views

Slow broker in ActiveMQ 5.6

We have recently migrated from ActiveMQ 4.0 to ActiveMQ 5.6 and are noticing a slowing down of response time from broker by around 50-60 seconds. We are using the default ActiveMQ 5.6 setup and have ...
-5
votes
1answer
132 views

When calling recv() the program works very slowly

My code is: http://ideone.com/nVXIQ. recv() functions always idling (it works very slow); it takes several seconds to get the result, and recv() should handle quickly such small amount of data.
-1
votes
1answer
268 views

Slow access to Tomcat web application from another PC

The access to my web application running Windows 2008 Server on localhost is fast; however, when I tried to access the web application through another PC (exp: http://xxx.xxx.xxx.xx:8080/appname) is ...
1
vote
2answers
274 views

Performace issue with JSP page load in Enterprise web application

I am assigned to a J2EE enterprise web application project. Now the main objective is to resolve some performance issues. it is built on SunOne App. Server (Web & EJB containers) & J2SE 1.4. ...
0
votes
0answers
294 views

Server Slow Response

I'm using a script to check how my server performs, which i use curl on another server to hit to my current server. I've logged down the response time from the curl_getinfo data. Here are the details: ...
-1
votes
1answer
51 views

Different ways of writing to the response [closed]

Let take this situation: I have a file which I want to send to the response. From what I can tell there are about 50 ways to do this. Taking "where" out of the question, what is the best way to write ...
12
votes
4answers
2k views

What's the minimum lag detectable by a human? [duplicate]

Possible Duplicate: What is the shortest perceivable application response delay? I've been profiling some JavaScript UI code because it feels a little laggy. So far, I've found some ...
3
votes
3answers
3k views

Slow query execution in an empty table. (after deleting a large amount of inserts)

I have a table in an oracle database with 15 fields. This table had 3500000 inserts. I deleted them all. delete from table After that, whenever I execute a select statement I get a very slow ...
2
votes
1answer
268 views

Wampserver slowing when internet is connected

Why my wampserver taking too long time to response when I'm connected to the internet? But when I disconnected the internet, It's work fine.
0
votes
3answers
787 views

Kohana execution time is fast, but overall response time is slow, why?

I use the Kohana3's Profiler class and its profiler/stats template to time my website. In a very clean page (no AJAX, no jQuery etc, only load a template and show some text message, no database ...
2
votes
2answers
221 views

PHP function curl_exec() slows down my script

I use the following function in CodeIgniter, to get my latest tweet: function tweet($id) { $c = curl_init(); curl_setopt($c, CURLOPT_URL, ...
1
vote
2answers
441 views

Slow request processing in rails, 'waiting for server' message

I have a quite big application, running from inside spree extension. Now the issue is, all requests are very slow even locally. I am getting messages like 'Waiting for localhost" or "waiting for ...
1
vote
2answers
485 views

ASP.NET Website no Response while Processing Long Process

When my Application face a long-time process, i.e fetch a query (SELECT a, b, c FROM d) This query needs 10 seconds to be completed in the MSSQL Management Studio, but when the ASP.NET application try ...
0
votes
1answer
1k views

Measuring the HTTP response time back to the client using only the server

I need to measure how long it takes to send a web response to a client - from the server-side only. I know there are ajaxian and client-side ways of doing this but I am limited to a server-side only ...
1
vote
1answer
265 views

.net How to measure time taken to download just the httpPost body excluding httpPost headers and upload data

One HTTP POST request/response transaction consists of Upload Request Ηeaders Upload Request Βody Download Response Headers Download Response Body I'm looking in .net to ...
3
votes
8answers
3k views

Measure size of Web Requests and Responses

I am looking for a way to measure the size of web requests and responses that I make in my browser. I would need a way to measure regular requests, as well as ajax requests. I am trying to improve ...