WebKit2.WebContext.prototype.set_cache_model

function set_cache_model(cache_model: WebKit2.CacheModel): void {
    // Gjs wrapper for webkit_web_context_set_cache_model()
}
  

Specifies a usage model for WebViews, which WebKit will use to determine its caching behavior. All web views follow the cache model. This cache model determines the RAM and disk space to use for caching previously viewed content .

Research indicates that users tend to browse within clusters of documents that hold resources in common, and to revisit previously visited documents. WebKit and the frameworks below it include built-in caches that take advantage of these patterns, substantially improving document load speed in browsing situations. The WebKit cache model controls the behaviors of all of these caches, including various WebCore caches.

Browsers can improve document load speed substantially by specifying WebKit2.CacheModel.web_browser. Applications without a browsing interface can reduce memory usage substantially by specifying WebKit2.CacheModel.document_viewer. The default value is WebKit2.CacheModel.web_browser.

cache_model

a WebKit2.CacheModel