(self, key: str, type: CacheType, filetype=None)
| 111 | return p / key |
| 112 | |
| 113 | def is_exists(self, key: str, type: CacheType, filetype=None): |
| 114 | full_path = self.path(key, type, filetype) |
| 115 | return full_path.exists(), full_path |
| 116 | |
| 117 | def get(self, key: str, type: CacheType, filetype=None): |
| 118 | full_path = self.path(key, type, filetype) |