hasItem(key)
Checks if item exists.
Arguments
key
(string): Key to check if an item exists by.
Lifecycle
preHasItem
Event name:
preHasItem
Properties passed:cacheInstance
reference to cache instance (this
)key
key passed tohasItem
method
Returns: (object): object containing properties:
cacheInstance
reference to cache instance (this
)key
key passed through handlers added forpreHasItem
event
postHasItem
Event name:
postHasItem
Properties passed:cacheInstance
reference to cache instance (this
) returned bypreHasItem
key
key returned bypreHasItem
result
boolean value returned by adapter using its hasItem method
Returns: (object): object containing properties:
cacheInstance
reference to cache instance (this
)key
key passed through handlers added forpostHasItem
eventresult
boolean value passed through handlers added forpostHasItem
event
Eventually
hasItem
returns result returned bypostHasItem
.
Returns
(bool): true
if item exists, false
otherwise.
Example
Last updated