(
self,
cache_key: str,
value=None)
| 116 | |
| 117 | |
| 118 | def set_cache_by_key( |
| 119 | self, |
| 120 | cache_key: str, |
| 121 | value=None): |
| 122 | |
| 123 | if self.cache_dict is None: |
| 124 | self.cache_dict = {} |
| 125 | |
| 126 | self.cache_dict[cache_key] = value |
| 127 | |
| 128 | |
| 129 | def set_cache_key_dirty( |
no outgoing calls
no test coverage detected