webkit-0.12.6.0: Binding to the Webkit library.

Portabilityportable (depends on GHC)
Stabilityprovisional
Maintainergtk2hs-users@lists.sourceforge.net
Safe HaskellNone

Graphics.UI.Gtk.WebKit.CacheModel

Contents

Description

Object used to communicate with the application when downloading

Synopsis

Enums

Methods

getCacheModel :: IO CacheModelSource

Returns the current cache model. For more information about this value check the documentation of the function setCacheModel.

  • Since 1.1.18

setCacheModel :: CacheModel -> IO ()Source

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 WebkitCacheModelWebBrowser. Applications without a browsing interface can reduce memory usage substantially by specifying WebkitCacheModelDocumentViewer. Default value is WebkitCacheModelWebBrowser.

  • Since 1.1.18