webkitcachemodel

webkitcachemodel

Synopsis

enum                WebKitCacheModel;
WebKitCacheModel    webkit_get_cache_model              (void);
void                webkit_set_cache_model              (WebKitCacheModel cache_model);

Description

Details

enum WebKitCacheModel

typedef enum {
    WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER = 1,
    WEBKIT_CACHE_MODEL_WEB_BROWSER
} WebKitCacheModel;


webkit_get_cache_model ()

WebKitCacheModel    webkit_get_cache_model              (void);

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

Returns :

the current WebKitCacheModel

Since 1.1.18


webkit_set_cache_model ()

void                webkit_set_cache_model              (WebKitCacheModel 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 WEBKIT_CACHE_MODEL_WEB_BROWSER. Applications without a browsing interface can reduce memory usage substantially by specifying WEBKIT_CACHE_MODEL_DOCUMENT_VIEWER. Default value is WEBKIT_CACHE_MODEL_WEB_BROWSER.

cache_model :

a WebKitCacheModel

Since 1.1.18