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

C++ with Visual Studio 2017 - manipulate the library search order when load-time dynamic linking

I have a C++ application on Windows, compiled with MSVC, that is linking to a number of dlls at runtime. The application has an Excel front end: an .xll file that the user can load into excel. The user should be able to load the xll from whichever…
Nele
  • 73
  • 7
0
votes
1 answer

How to find load time of the website using python or javascript

I need to find the load time of a website that I am currently building. I have hosted the site locally. How can I find its load time using python or javascript? I tried the following code, but I think it is for response time. from time import…
don don
  • 3
  • 3
0
votes
2 answers

JQuery instant addClass or hide class

When adding JQuery to hide a class it of course waits for the page to load then hides the class, same thing for 'addClass'. There has got to be a better or faster way for it to 'load' as the page is loading. Anyone know of any ideas? I have given…
ToddN
  • 2,901
  • 14
  • 56
  • 96
0
votes
0 answers

Unity with ARKit- splash screen displays for REALLY long time?

Ok, I am working with the below version of Unity and have integrated the ARKit plugin, just building a basic app. I don't believe Ive used a ton of objects/anyting crazy to load. Issue is my splash screen time is REALLY long (up to 30+ seconds) on…
blue
  • 7,175
  • 16
  • 81
  • 179
0
votes
1 answer

Server load is minimal but website responds poorly

I have VPS on hetzner. Server is located in Germany. It has 256GB RAM, 6CPUs (12 threads). I have a file which since yesterday, is requested about 30 times in one second. File has 2 Select, 2 Update, 2 Insert queries, so I assumed (not sure how this…
temo
  • 612
  • 1
  • 9
  • 25
0
votes
2 answers

How is this delay possible?

I'm trying to optimize my website's load time because it was too long, and it still is but especially for the jQuery UI CSS images, If you have a minute, could you please look at this Pingdom test? Among files number 60 and 75 there are few images…
Toni Michel Caubet
  • 19,333
  • 56
  • 202
  • 378
0
votes
2 answers

How to find exact response time in jmeter?

How to find the exact time taken for my web page to load using jmeter? Since i am getting 3 sec as response time but manually it takes more than that to load the page.
Aishwarya
  • 1
  • 1
  • 1
0
votes
3 answers

Website loads image with 1-2 second delay. Could I increase the performance somehow?

recently I made a website for my photography. htttp://www.simotamas.com I am a newbie, so its not the best site but it works fine for me, I got only one problem, when a site is loaded on a device for the first time, the gallery loading time takes…
0
votes
1 answer

Load multiple images in order once they are loaded

I have four images of various sizes. I want them to load in a certain sequence. If I use a load handler they will just appear once they are loaded, and not necessary in order. But if I set them to .fadeIn() in order, then they won't necessarily…
bozdoz
  • 12,550
  • 7
  • 67
  • 96
0
votes
0 answers

sort by descending order taking much time to load in mysql

I have one table with 33,107,887 records. table structure: tablename id - bigint - uniqu text - text - fulltex index cate_id - bigint - btree index marchant_name - varchare - btree index created_on - timestamp - btree index When i run below…
0
votes
0 answers

How to measure browser boot time + page load time

There are a lot of tools to measure webpage load time but my goal is not to measure just server, network and rendering speed but overall user experience from the clicking a link to getting page ready (PC Windows). I have some experience in C# but…
Niksr
  • 363
  • 4
  • 11
0
votes
1 answer

Checking the size of a webpage

Im at the moment developing a very heavy website which i need to optimize becouse of the long loading time. I was wondering what kind of tools i could use to check how large a website is in terms of kb's to use that as a meassuring tool to optimize…
Alexander
  • 15
  • 1
  • 3
0
votes
1 answer

PHP Application loading slow after database size increased gradually

I am running MVC PHP application. After some times when database size increased gradually the application get slowed. Is there any specific reason of database size. How can I reduce the load time?
Mallikarjun
  • 13
  • 1
  • 5
0
votes
1 answer

website load time differs for more than 2 second on various try

I am working on to figure out the performance bottleneck of a website. I am using the chrome empty cache and hard reload option and hitting it using the incognito mode(with no extension enabled). For determining the page load time, using the…
Amit
  • 30,756
  • 6
  • 57
  • 88
0
votes
2 answers

Confusions about address binding

Compile time. If you know at compile time where the process will reside in memory, then absolute code can be generated. For example, if you know that a user process will reside starting at location R, then the generated compiler code will start at…