⚠ Archived content — this site is no longer maintained.   Current WebKit documentation is at docs.webkit.org.

Changeset 263269 in webkit


Ignore:
Timestamp:
Jun 19, 2020, 9:18:43 AM (6 years ago)
Author:
commit-queue@webkit.org
Message:

Enable stale-while-revalidate support by default
https://bugs.webkit.org/show_bug.cgi?id=213286

Patch by Rob Buis <rbuis@igalia.com> on 2020-06-19
Reviewed by Youenn Fablet.

Enable stale-while-revalidate support for Mac/GTK/WPE by changing the default
to true. Note that platforms that do not support speculative loads, which s-w-r
relies on, will not see any change in bahavior.

  • UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h:
Location:
trunk/Source/WebKit
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Source/WebKit/ChangeLog

    r263259 r263269  
     12020-06-19  Rob Buis  <rbuis@igalia.com>
     2
     3        Enable stale-while-revalidate support by default
     4        https://bugs.webkit.org/show_bug.cgi?id=213286
     5
     6        Reviewed by Youenn Fablet.
     7
     8        Enable stale-while-revalidate support for Mac/GTK/WPE by changing the default
     9        to true. Note that platforms that do not support speculative loads, which s-w-r
     10        relies on, will not see any change in bahavior.
     11
     12        * UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h:
     13
    1142020-06-19  Alexander Mikhaylenko  <alexm@gnome.org>
    215
  • trunk/Source/WebKit/UIProcess/WebsiteData/WebsiteDataStoreConfiguration.h

    r260169 r263269  
    181181    bool m_networkCacheSpeculativeValidationEnabled { false };
    182182#endif
    183     bool m_staleWhileRevalidateEnabled { false };
     183    bool m_staleWhileRevalidateEnabled { true };
    184184    String m_localStorageDirectory;
    185185    String m_mediaKeysStorageDirectory;
Note: See TracChangeset for help on using the changeset viewer.