algo.Cache.get()
Description
Looks up an entry.
If an entry cannot be found with the specified key, and an add callback was given when calling new Cache(), the callback function will be called with the key to obtain its value, and with that value, a new entry will be created in the Cache.
Syntax
cache.get(key)
Parameters
get(key)
key
The key of the entry to look up. Can be of any type.
Return Value
The value of the entry.