A CacheStrategy which stores cached items in a Redis instance. This is a high-performance cache strategy which is suitable for production use.
Note: To use this strategy, you need to manually install the ioredis package:
CacheStrategy() => () => (key: string) => Promise<T | undefined>(key: string, value: T, options?: SetCacheKeyOptions) => Promise<void>(key: string) => Promise<void>(tags: string[]) => Promise<void>