Close the cache connection
(self, **kwargs)
| 411 | return await self.aincr_version(key, -delta, version) |
| 412 | |
| 413 | def close(self, **kwargs): |
| 414 | """Close the cache connection""" |
| 415 | pass |
| 416 | |
| 417 | async def aclose(self, **kwargs): |
| 418 | return await sync_to_async(self.close, thread_sensitive=True)(**kwargs) |