()
| 37 | * Get the current adapter type for logging/debugging |
| 38 | */ |
| 39 | export function getMcpCacheType(): 'redis' | 'memory' { |
| 40 | const redis = getRedisClient() |
| 41 | return redis ? 'redis' : 'memory' |
| 42 | } |
| 43 | |
| 44 | /** |
| 45 | * Reset the cached adapter. |
no test coverage detected