Young Oh

Results 1 comments of Young Oh

I got the same error. It works for me adding createClient option(`legecyMode: true`) and `connect()` together. ```javascript import connectRedis from "connect-redis"; ... const redisClient = createClient({ legacyMode: true, }); await...