mozilla-mobile / perf-frontend-issues

A repository to hold issues related to front-end mobile application performance.
4 stars 0 forks source link

Update measure_start_up/backfill.py to take into account start up cache #228

Closed mcomella closed 2 years ago

mcomella commented 2 years ago

The start up cache gets filled at most ~60s after start up and improves subsequent cold view start ups by at most 508ms on a Moto G5 (source). Most users will experience start ups with this cache so we should be measuring performance with this cache: let's update both of measure_start_up and backfill.py to take it into account.

We might just be able to change this line.

Note: a bug BZ-1728461 prevented the start up cache from taking affect until > 6 hours after first run so we haven't often seen this discrepancy locally.

mcomella commented 2 years ago

PR: https://github.com/mozilla-mobile/perf-tools/pull/18

mcomella commented 2 years ago

Landed.