Get list of values associated with a key Returns empty list ([]) if `key` is not found
(self, key)
| 130 | |
| 131 | @abstractmethod |
| 132 | def get(self, key): |
| 133 | '''Get list of values associated with a key |
| 134 | |
| 135 | Returns empty list ([]) if `key` is not found |
| 136 | ''' |
| 137 | pass |
| 138 | |
| 139 | def getmany(self, *keys): |
| 140 | return [self.get(key) for key in keys] |
no outgoing calls
no test coverage detected