(self)
| 698 | return self.conn.scan_iter(match=self.counter_prefix + b'*') |
| 699 | |
| 700 | def flush_results(self): |
| 701 | keys = list(self._result_keys()) |
| 702 | if keys: |
| 703 | self.conn.delete(*keys) |
| 704 | |
| 705 | def flush_counters(self): |
| 706 | keys = list(self._counter_keys()) |
nothing calls this directly
no test coverage detected