Questions tagged [load-time]

Load Time is amount of time (usually in seconds) that takes a browser to fully download and render a web page.

Definition

Wikipedia defines it as follows:

enter image description here

Tools

The following websites provide free and convenient tools for quick measuring web page load time along with full detailed graphs:

156 questions
0
votes
1 answer

Dart Vs JavaScript loading time comparison

I've created 2 versions of a Google Maps application - one with Dart and one with JavaScript code compiled from the original Dart code. I run both of these locally on my computer not on the public internet and I am looking for a way to record the…
0
votes
0 answers

Fetching all GoogleCalendar Events before FullCalendar has loaded

I currently am using Adam Shaw's jQuery Calendar 'FullCalendar' and am experiencing significant delays in the calendar rendering. In short, the page appears, 1 second passes, the Calendar pops in, another second passes, and then the events populate…
mijopabe
  • 646
  • 5
  • 23
0
votes
1 answer

2 instances of 1 image on a page

I am not really sure how to google this, so I thought I could ask here. I have the same image, posted on a page twice, will that slow down the execution time or will it remain the same since I am using the same resource?
user2227904
  • 679
  • 1
  • 8
  • 27
0
votes
1 answer

How to time ListBox load time WPF

I'm playing around with DataVirtualization and Async. What are some options I have for quantifying load times of a ListBox that I'm binding my virtualized data collections to? I need a way to compare the virtualized vs non-virtualized data loading.…
Rachael
  • 1,965
  • 4
  • 29
  • 55
0
votes
2 answers

What's the best way to make external images and JS files to not affect page load time?

On a lot of the pages I work with there are a lot of external(non-critical) external images and js files that get called that affect the load time. One of these is a tracking pixel for an ad company that sometimes can take a few seconds to load and…
Ryan Detzel
  • 5,519
  • 9
  • 37
  • 49
0
votes
0 answers

How to give a load priority to external javascript

As title says I want to give a priority to my layer ad which is third party script.Because of delay it has I want to give it priority. I thought I could just put it in in beginning of the body tag, but than it doesn't work properly(shows up under my…
Milorad
  • 155
  • 14
0
votes
1 answer

Load times with @font-face vs. Google fonts or localhost files vs. CDN's

Is loading fonts via storing them on your server and using @font-face slower than loading them from Google's font API? Or does it always depend on the font and vary from situation to situation? And the same for Javascript and other similar files: is…
Russell Strauss
  • 1,160
  • 3
  • 14
  • 30
0
votes
3 answers

Initialisation during load time vs runtime vs compile-time

In the below example, I get an error on compilation int main() { int x = 10; // guess this is runtime initialisation static int y = x; //guess this is loadtime initialisation printf("x = %d, y = %d", x, y); } Error: error:…
Aadishri
  • 1,341
  • 2
  • 18
  • 26
0
votes
3 answers

Why does our website load so much slower in IE than any other browser?

We have a WordPress website which loads sufficiently in every browser I've tried, except for IE. For some reason in IE, it seems to freeze the browser for a few seconds every single time the page is loaded, doubly so if it has to load a page with an…
user1997781
  • 1,913
  • 2
  • 14
  • 17
0
votes
1 answer

What is the trick to getting LTW to work in a Webapp?

I want to be able to use Spring & AspectJ to weave in an aspect to an existing tomcat webapp at load time. I am using AspectJ because I need to perform constructor pointcut. I have two test scenarios, one where my aspect is part of a simple servlet…
Griff
  • 1,796
  • 3
  • 23
  • 48
0
votes
3 answers

Wordpress loads forever

I'm trying to figure out why this website keeps loading, possibly to answer why it loads very slowly (but only sometimes, which might have to do with the hosting). http://nothankstoyouproductions.com/ Does anyone have any clues?
user1743013
  • 1
  • 1
  • 2
0
votes
1 answer

better loading sequence?

I've got a sidebar with lots of functionality in it. It works great, but now I've got a module on it that takes a bit to load (it's using file_get_contents() for 3 requests, though they are cached). It takes a minute, so the site looks broken for a…
Xhynk
  • 13,513
  • 8
  • 32
  • 69
0
votes
2 answers

Wordpress ecommerce site taking 9 seconds to load

I have a site which is taking 9 seconds to load any of the page. Upon the request, the page hangs for about 9 seconds and then it is served. I'm trying to figure out whether it's a problem with the wordpress installation, something with the host ...…
0
votes
3 answers

Multithreading to speed up load times

I made a program that loads a bunch of computer information. In the Form_Load event I have it initialize 3 (that number will grow) panels of information. One that has a bunch of unit information seems to make the program load rather slowly. I've…
Robert Snyder
  • 2,399
  • 4
  • 33
  • 65
0
votes
2 answers

Android: How to speed up load time, when retrieving XML info from a website?

When I press a button, its supposed to retrieve data from a webpage and display it according to my layouts. It does this fine, but only if I click back, go back to my main activity(home activity) and press the button again. It takes forever to load…
shecodesthings
  • 1,218
  • 2
  • 15
  • 33
1 2 3
10
11