Hacker News new | ask | show | jobs
by tonyedgecombe 3387 days ago
"When you follow a link, Turbolinks automatically fetches the page, swaps in its <body>, and merges its <head>, all without incurring the cost of a full page load."

Is the cost really that high to warrant this?

1 comments

It prevents the browser from requesting all the external files (CSS and/or JS), so yes, it may be that high.
I would have assumed they would be cached?