TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

How important is page load time and what you can do about it (2014)

11 pointsby AnatMl2about 7 years ago

8 comments

jjjjjjjjjjjjjjjabout 7 years ago
I do agree with the sentiment that web page speed matters in most cases. However this article provides little insight into how important page load time is, why it is important, or what you can do about it.<p>Instead of this one example of a very basic solution to this very specific site&#x27;s problem, I would prefer to see perhaps a list of common problems and how to deal with them. &quot;Lastly, I changed a few configuration settings to improve transfer of data by the server.&quot; what configuration settings, and how do they improve the &quot;transfer of data&quot;?<p>Perhaps also an introduction to when optimising for fast load time makes sense, and some more statistics, instead of (paraphrasing) &quot;it makes economical sense for two of the largest companies on earth, so I guess it&#x27;s important&quot;.<p>Also why are they debugging asset requests using webpagetest.org instead of devtools?
stef25about 7 years ago
In my experience, a server response time of several 100ms is &quot;slow&quot; for example Laravel with a bunch of Eloquent relationships. Drupal can also easily run thousands of queries per page load and Magento is possibly even worse. This can be easily cached and optimised though.<p>And it doesn&#x27;t really make that much of a difference compared to asset loading. As in, a dozen js &#x2F; css files and a bunch of images. Even when you compress &#x2F; gzip them as best as you can and load from CDN, they still tend to take up an excruciating amount of time.<p>The article is good but very &quot;beginner&quot;. The more challenging stuff is browser caching with htaccess rules etc.<p>Google Page Speed tests are actually very useful here and if you follow all their advice you end up with a very noticeably faster site.
acconradabout 7 years ago
How did this get so many upvotes?<p>* Doesn&#x27;t actually explain why speed matters (hint: over 3 seconds people perceive a slow experience and over 10 seconds people will assume the site is broken)<p>* Doesn&#x27;t say how to fix speed issues other than one specific small image&#x2F;tiling &quot;fix&quot;<p>* If you worked at a real company this would never fly. The solution isn&#x27;t to change the background altogether and go with tiling vs a big image.<p>I actually wrote an article on how to improve performance for everyone [1], and it&#x27;s the biggest bang for your buck that anyone can do (designers, developers, or product folks).<p>[1] <a href="https:&#x2F;&#x2F;userinterfacing.com&#x2F;the-fastest-way-to-increase-your-sites-performance-now&#x2F;" rel="nofollow">https:&#x2F;&#x2F;userinterfacing.com&#x2F;the-fastest-way-to-increase-your...</a>
评论 #17101194 未加载
评论 #17100998 未加载
arsenicoabout 7 years ago
The best you can do is pre-render on the server, and use static where possible. Then you would need to optimise delivery and networks. And then you&#x27;re done... and spend some time on usability.
pastaabout 7 years ago
Well if you look at the graph almost half of the load time is taken by Magento&#x27;s server response.<p>Magento is slow. Ofcourse you can optimize all assets but in the end Magento is still slow.<p>I&#x27;ve seen companies throwing lots and lots of money at Magento hosting to speed it up. But at the end of the day I think Magento is great for marketeers but not so great for the rest of the world.
评论 #17100744 未加载
评论 #17101705 未加载
SmellyGeekBoyabout 7 years ago
3 seconds is still far too slow, even by Magento standards.
damsdu78about 7 years ago
Wow... 2.5 seconds to load... &lt;&#x2F;irony&gt;
ddoranabout 7 years ago
The article is from 2014.
评论 #17100821 未加载