getItem(key)
Returns an item.
Arguments
key
(string): Key to get an item by.
Lifecycle
preGetItem
Event name:
preGetItem
Properties passed:cacheInstance
reference to cache instance (this
)key
key passed togetItem
method
Returns: (object): object containing properties:
cacheInstance
reference to cache instance (this
)key
key passed through handlers added forpreGetItem
event
postGetItem
Event name:
postGetItem
Properties passed:cacheInstance
reference to cache instance (this
) returned bypreGetItem
key
key returned bypreGetItem
item
item returned by adapter using its getItem method
Returns: (object): object containing properties:
cacheInstance
reference to cache instance (this
)key
key passed through handlers added forpostGetItem
eventitem
item passed through handlers added forpostGetItem
event
Eventually
getItem
returns item returned bypostGetItem
.
Returns
(Item): Item, an object.
(undefined): If item is not found, returns undefined
.
Example
Last updated