Class: CacheAdapter

CacheAdapter()

The adapter used to communicate with the underlying cache storage

Constructor

new CacheAdapter()

Source:

Methods

flushAll()

Delete all values in the cache
Source:

get(publicId, type, resourceType, transformation) → {*}

Get a value from the cache
Parameters:
Name Type Description
publicId string
type string
resourceType string
transformation string
Source:
Returns:
the value associated with the provided arguments
Type
*

set(publicId, type, resourceType, transformation, value)

Set a new value in the cache
Parameters:
Name Type Description
publicId string
type string
resourceType string
transformation string
value *
Source: