Deletes all cache files from disk. Calls init() again.
(self)
| 79 | |
| 80 | |
| 81 | def clear(self): |
| 82 | '''Deletes all cache files from disk. Calls init() again.''' |
| 83 | self.con.close() |
| 84 | os.remove(self.metadata_db) |
| 85 | for bin_path in self.path.glob('*.bin'): |
| 86 | os.remove(bin_path) |
| 87 | self.init() |
| 88 | |
| 89 | |
| 90 | def create_new_shard(self): |
no test coverage detected