world politics tech business tabloid sports science health entertainment lifestyle food travel gaming

What caused Chromium to start under 20ms?

Chromium startup latency cut to under 20ms

A recent technology post describes an approach for making Chromium start dramatically faster—specifically, targeting startup in under 20 milliseconds. The key change is aimed at reducing the amount of work the browser must do before the initial experience becomes usable, so the “time to first response” drops sharply instead of remaining dominated by initialization steps.

In practical terms, shaving startup time that aggressively typically involves:

  • Minimizing early initialization work (deferring non-critical components)
  • Reducing blocking operations on the critical path
  • Reworking how the browser warms caches and services so the early UI can appear sooner
  • Avoiding unnecessary configuration parsing and extensions activity during the earliest moments

The significance is not only that it feels faster to users; it also changes the engineering trade-offs around perceived performance. When a browser crosses the threshold from “instant-ish” to truly snappy, startup becomes a more measurable competitive advantage—particularly on lower-end devices, where initialization overhead can otherwise dominate.

For developers and teams building web platforms, faster Chromium startup also improves the responsiveness of workflows that rely on frequent tab opens, hard reloads, or short-lived browser sessions—common patterns in testing, support, and on-the-go usage.

Overall, the report matters because it shows that extreme startup targets are achievable through systems-level changes rather than just faster hardware or generic performance tuning.


Curated by Humans | Summarized by Machines