Kind: global abstract class
Author: FlaringPhoenix
| Param | Default | Description |
|---|---|---|
| defaultExpiration | 60000 |
Default expiration time in milliseconds (Default: 60000) |
Sets a key-value pair in the cache
Kind: instance method of LiquidCache
Returns:
The cache instance
| Param | Description |
|---|---|
| key | Key to set |
| value | Value to be stored within key |
| expiration | (Optional) Expiration time in milliseconds (Default: 60000) |
Pop's an element from the cache
Kind: instance method of LiquidCache
Returns:
The value stored within the key
| Param | Description |
|---|---|
| key | Key to get |
Clears the entire cache and all timeouts
Kind: instance method of LiquidCache