skip to Main Content

Store a value in redis store using Nestjs

I have a simple nestjs application, where I have set up a CacheModule using Redis store as follows: import * as redisStore from 'cache-manager-redis-store'; CacheModule.register({ store: redisStore, host: 'redis', port: 6379, }), I would like to use it to store…

VIEW QUESTION

SignalR and Redis

I've got a project that uses SignalR and a RedisBackplane, we've moved from StackExchange.Redis to ServiceStack.Redis due to Redis Sentinel compatibility issues (Not movable) However, it now looks like the support for SignalR Redis Backplane seems to be tied into…

VIEW QUESTION
Back To Top
Search