Web performance for the curious [video] - 2 views
Avoiding Unnecessary Paints - 1 views
High Performance Networking in Google Chrome - 2 views
Cache compressed? or uncompressed? | High Performance Web Sites - 1 views
-
My previous blog post, Cache them if you can, suggests that current cache sizes are too small - especially on mobile. Given this concern about cache size a relevant question is: If a response is compressed, does the browser save it compressed or uncompressed? Compression typically reduces responses by 70%.
Websitetest.com - A Yottaa testing tool - 1 views
SPDY on Rails - Bugsnag Blog - 1 views
A developer's guide to rendering performance - 4 views
-
When we look back over the history of web performance we see a heavy focus on reducing the number of requests and getting files to the browser quickly. Our platform has changed a lot, and while optimizing for network performance remains a crucial part of our jobs, we now have to broaden our performance horizons. Our users also expect smooth scrolling, animations and interactions, even on mobile devices. In short we need to deal with not just how quickly our sites and apps load, but also how quickly they run. [video] In this session Paul takes a lightning tour of how Chrome converts the DOM into pixels, see how our code affects its workload, and arrive at a modern workflow for finding (and eliminating) rendering bottlenecks.
Eliminating Roundtrips with Preconnect - 0 views
Why is getElementsByTagName() faster that querySelectorAll()? - 4 views
-
getElementsByTagName("a") is faster than querySelectorAll("a") in nearly all browsers. There's one very important difference between these two methods, and it's not that one accepts only a tag name and the other accepts a full CSS selector. The big difference is in the return value: the getElementsByTagName() method returns a live NodeList while querySelectorAll() returns a static NodeList. This is extremely important to understand.
-
en fait, la création de la liste d'éléments est 90% plus rapide avec getElementsByTagName par contre ça peut être compensé par les accès aux propriétés, plus rapides avec la liste statique retournée par querySelectorAll : http://jsperf.com/access-to-nodes-via-queryselectorall-vs-getelementsbyta/2 donc rien d'absolu, ça dépend de chaque code
« First
‹ Previous
41 - 60 of 75
Next ›
Showing 20▼ items per page