Traditional FileCache: body is stored in memory, so not suitable for large downloads.
| 105 | |
| 106 | |
| 107 | class FileCache(_FileCacheMixin, BaseCache): |
| 108 | """ |
| 109 | Traditional FileCache: body is stored in memory, so not suitable for large |
| 110 | downloads. |
| 111 | """ |
| 112 | |
| 113 | def delete(self, key: str) -> None: |
| 114 | self._delete(key, "") |
| 115 | |
| 116 | |
| 117 | class SeparateBodyFileCache(_FileCacheMixin, SeparateBodyBaseCache): |
no outgoing calls
searching dependent graphs…