Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 11 Next »

Related pages

  • Chrome Devtools ← See this page for ways to profile your web app, to see how it might be made faster.

Misc learnings

  • When linking to your website, you should include the "https://" and the "www.".
    • This is based on what I saw in the waterfall view from webpagetest.org. It appears that if you just have "website.com", the browser will need to do one redirect to go from "website.com" to "www.website.com", and another to go from "www.website.com" to "https://www.website.com". In my case the page loaded maybe 2-3 times slower than it otherwise would have.


Test websites


Monitoring websites

Tutorials / Guides / References

Tools


Misc


Stress/Load-testing a web app / API



CDNs

Cache-hit ratios

  • https://www.fastly.com/blog/truth-about-cache-hit-ratios
    • A "hit" is when the CDN serves a resource, and a "miss" is a resource that your server needs to serve.
    • Summary: Most CDNs consider it a "hit" even if they don't serve the resource from an edge-node-server closest to the user, but instead from a parent node somewhere further away.  This makes their CHRs less useful for understanding the performance benefit that the CDN is providing.  Their CHRs are still useful for getting a sense of the server load that the CDN is saving you, though.
  • No labels