|
|
|
|
|
|
| Synopsis |
|
|
|
|
| Cache API
|
|
| cacheGet |
| :: String | Key
| | -> AController (Maybe String) | | | Get a value from cache
|
|
|
| cachePut |
| :: String | Key
| | -> String | Value
| | -> AController Bool | | | Put a value to cache
|
|
|
| cacheUnset |
|
|
| tryReturnFromCache |
| :: String | Key
| | -> AController () | | | If named item is in cache, return its value. Otherwise, do nothing.
|
|
|
| cached :: String -> AController String -> AController String |
|
| Produced by Haddock version 2.4.2 |