(
self,
cache_key: str
)
| 127 | |
| 128 | |
| 129 | def set_cache_key_dirty( |
| 130 | self, |
| 131 | cache_key: str |
| 132 | ): |
| 133 | # Does not add to session. |
| 134 | if self.cache_dict: |
| 135 | self.cache_dict[cache_key] = None |
| 136 | |
| 137 | |
| 138 | def regenerate_cache_by_key(self, |
no outgoing calls