falsy value TTFB in repeat view

Hi

I set up WPT monitor, and had alerts with TTFB > 1s . However I have to consider them as false positives as long as I have a repeat view.

Take a look at this test : http://www.webpagetest.org/result/120925_91c0c6eef9fd076209eab1071bc26564/#run1 , first run

  • in the first view, I have the page with a decent TTFB, all is right
  • in the repeat view, the TTFB is above 1s

Reason is that there is a cache for the HTML page, so it’s not requested in the repeat view. The cache is also correctly set for a lot of objects on this page, so the page is displayed in less than a second.
The TTFB is calculated from the TTFB of the first resource that is really requested (an ad here). Because the page spend the first second to display itself from cache (see CPU), the ad is called too late.

So we are in a situation where an optimized page (good cache management) shows bad number (bad TTFB).
Virtually, the TTFB here is 0s because the main HTML is served from the disk. Have you considered just displaying 0 (or “from disk” maybe) for this value, or do you think I should rather adapt myself and consider the TTFB meaningless in the case of a repeat view of a cached page ?

I think it’s worth implementing a fix on my side where I recognize pages served from cache but that may not always be available - I’ll have to see what we can do there (since we usually watch network traffic).