RESOLVED FIXED 61520
TestFailures page should take advantage of LocalStorage APIs (or similar) to improve loading performance
https://bugs.webkit.org/show_bug.cgi?id=61520
Summary TestFailures page should take advantage of LocalStorage APIs (or similar) to ...
Adam Roben (:aroben)
Reported 2011-05-26 06:23:04 PDT
The TestFailures page loads a bunch of data from build.webkit.org that doesn't change. If we were to cache some of this data in window.localStorage (or similar), we could avoid reloading the data every time the page is viewed by a particular user. This would probably speed up loading quite a bit.
Attachments
Cache some of the TestFailures page's data in localStorage (14.41 KB, patch)
2011-06-23 12:33 PDT, Adam Roben (:aroben)
ddkilzer: review+
Adam Roben (:aroben)
Comment 1 2011-05-26 06:27:57 PDT
Data we might want to cache: 1) The list of old builds for each tester 2) The set of failing tests in each of those old builds We'd want to prune the cache from time to time. I think a strategy that would work well is: * Whenever we finish finding revisions to blame for all currently failing tests, throw away all data for all revisions older than the oldest "passing" revision identified. E.g., if all currently failing tests were passing in r12345, we could throw away all data for r12344 and older.
Adam Roben (:aroben)
Comment 2 2011-06-23 12:33:04 PDT
Created attachment 98381 [details] Cache some of the TestFailures page's data in localStorage
David Kilzer (:ddkilzer)
Comment 3 2011-06-23 12:47:52 PDT
Comment on attachment 98381 [details] Cache some of the TestFailures page's data in localStorage r=me
Adam Roben (:aroben)
Comment 4 2011-06-23 12:51:18 PDT
Note You need to log in before you can comment on or make changes to this bug.