(self)
| 1067 | return self._redis.hexists(self._name, key) |
| 1068 | |
| 1069 | def empty_buffer(self): |
| 1070 | self._buffer.execute() |
| 1071 | # To avoid broken pipes, recreate the connection |
| 1072 | # objects upon emptying the buffer |
| 1073 | self.__init__(self.config, name=self._name) |
| 1074 | |
| 1075 | |
| 1076 | class RedisSetStorage(UnorderedStorage, RedisListStorage): |