Clear the client cache.
(self)
| 161 | return self._client_cache[cache_key] |
| 162 | |
| 163 | def clear_cache(self): |
| 164 | """Clear the client cache.""" |
| 165 | self._client_cache.clear() |
| 166 | logger.debug("Cleared client cache") |
| 167 | |
| 168 | def get_cache_size(self) -> int: |
| 169 | """Get the number of cached clients.""" |