* Close Redis connection if applicable
()
| 178 | * Close Redis connection if applicable |
| 179 | */ |
| 180 | async close() { |
| 181 | if (this.redisClient) { |
| 182 | await this.redisClient.quit() |
| 183 | } |
| 184 | } |
| 185 | } |
| 186 | |
| 187 | let cachePoolInstance: CachePool | undefined |
no outgoing calls
no test coverage detected