Determines whether the key is in the storage or not
(self, key)
| 166 | |
| 167 | @abstractmethod |
| 168 | def has_key(self, key): |
| 169 | '''Determines whether the key is in the storage or not''' |
| 170 | pass |
| 171 | |
| 172 | def status(self): |
| 173 | return {'keyspace_size': len(self)} |