Differences between revisions 4 and 5
Revision 4 as of 2017-06-25 01:29:28
Size: 577
Editor: SamatJain
Comment:
Revision 5 as of 2020-07-07 00:50:21
Size: 897
Editor: SamatJain
Comment: Loading Performance
Deletions are marked like this. Additions are marked like this.
Line 18: Line 18:

== Libraries ==

=== Loading performance ===

 * [[https://github.com/turbolinks/turbolinks|turbolinks]]: Make conventional Web pages act as an SPA; links fetch another page and replace current page's <body>
 * [[https://instant.page/|instant.page]]: Start preloading a page as soon as a user hovers over a link

Articles

10 things I learned making the fastest site in the world

Tools

Lighthouse: Web performance tool from Google that gives you a report card with action items

Web server performance tuning

   1 # Disable TCP slow start after idle
   2 echo 'net.ipv4.tcp_slow_start_after_idle = 0' >> /etc/sysctl.d/web-server.conf

Libraries

Loading performance

  • turbolinks: Make conventional Web pages act as an SPA; links fetch another page and replace current page's <body>

  • instant.page: Start preloading a page as soon as a user hovers over a link

SamatsWiki: WebPerformance (last edited 2020-07-07 00:50:21 by SamatJain)