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
1
vote
1 answer

How do I prevent script from causing endless loadtime for PHP?

I've been looking for a way to carry over the variable id from index.php to (amongst others) update-check.php. Initially this caused endless loadtime – i.e. the page waited forever on localhost. I narrowed it down to be session_start(); causing this…
Lenny
  • 446
  • 5
  • 21
1
vote
1 answer

How to configure aop.xml when use load time weaving(AspectJ) to get parameters?

I'm tring to get something from HBase.Using AspectJ's load time weaving.I have wrote the AbstractAspect.aj and aop.xml.I also have tried use "ajc -outxml AbstractAspect.aj" to generate aop.xml,it is too simple and can not get the method's…
zld1005
  • 11
  • 3
1
vote
2 answers

Most effective way of reducing load times and bandwidth usage of images

I have a giant image that loads on the main page of my website, 1366*690px I realized that is gigantic and decided to take considerations on speeding up the load times. I first ran it through Smush.it Then I coded some javascript to load different…
user3483494
1
vote
6 answers

How long should a page generation time take in PHP

I was searching the web for this but found no satisfying answer. I am not talking about the time it takes the browser to render and display. Only the part where the HTML is generated in the server itself.
mardicas
  • 13
  • 1
  • 4
1
vote
1 answer

Measuring page load times [server+client] with third party tools

We want to capture the page load times from server to client and not just execution time at server. This measurement is for system wide, meaning it should get the page load times from various locations. Ours is suite of intranet applications and the…
KrishHari
  • 449
  • 5
  • 10
1
vote
2 answers

What happens under the iOS Launch Image?

If I'm trying to reduce the load time for my app (that is, the time that the launch image is visible before the initial View Controller appears), where should I focus my efforts? I've found a few questions (like this) that deal with long launch…
Nerrolken
  • 1,975
  • 3
  • 24
  • 53
1
vote
1 answer

Does google measure page load on push state?

I'm currently working on a website which is structured as a single page app (loads everything in once). The site relies on the pushState api in order to function and of course for analytics purposes we correctly track the user on these events so our…
Chris Pearce
  • 1,706
  • 4
  • 15
  • 18
1
vote
3 answers

Figuring out page size with YSlow / Web Developer extension

I'm trying to figure out how much javascript is being loaded on my website. I'm using Reducisaurus to shrink my js files. The problem is, this is causing both YSlow and the Web Developer extension report the size of my files as ~.04K, which I know…
Vlad the Impala
  • 15,572
  • 16
  • 81
  • 124
1
vote
3 answers

How to reduce loading time in android phonegap

I am working on Phone Gap from last few days and its good platform to build cross platform application. my issue is each and every HTML pages takes too much time to load. i am simple using Jquery mobile design for UI. When i was testing in emulator…
Chintan Khetiya
  • 15,962
  • 9
  • 47
  • 85
1
vote
1 answer

Do repeated images increase the loading time of a website?

I'm trying to optimize the loading time of my website. Does requesting the same image in different places of the code increase load time? For example, I'm using an image as background of a button and I'm loading the same image in different places…
ferrangb
  • 2,012
  • 2
  • 20
  • 34
1
vote
1 answer

How to speed up fancybox2 external urls load time?

I'm using fancybox2 to display external urls on my site as iframes. sometimes it just takes too long for the page to be displayed. Q: Is there a way to speed up the external url load time?
user2161049
  • 853
  • 1
  • 6
  • 13
1
vote
4 answers

Internet Explorer takes considerably more time to load than FireFox-- to the point where it actually freezes. How can I prevent this?

One of our main pages takes an immense amount of time to load in IE8 (have not tried IE7 or 6). It's so bad that IE actually freezes up for a few seconds while trying to load the page. Firefox is perfectly fine... I've tried a bunch of different…
Matt
  • 5,547
  • 23
  • 82
  • 121
1
vote
2 answers

How long it takes the server to load a page with all it's content

I need to know how long it takes to load my website with all the necessary css and js files a browser would load. Is there an easy way to do this or I need to file_get_content all separately? These calculations need to be in PHP and not on the…
1
vote
4 answers

PHP Script to load fonts as needed

I'm looking for a way to add fonts on an 'as-needed' basis. I originally had 4 Google API Fonts chosen from when I build this particular site. Now that it's grown, I'd like to up the font selection to 9 choices. I'm trying to figure out a way to get…
Casey Dwayne
  • 2,142
  • 1
  • 17
  • 32
1
vote
2 answers

Drop-in packages in Go?

How would I go about having a package register some object (for instance a function) to a registry at load time such that adding a new package to the program will automatically add new functionality to the program without having to modify code in…
AntiMS
  • 337
  • 4
  • 15