skip to Main Content

Redis Client Side Caching for .Net

Redis 6 has introduced a feature supporting Client Side Caching and is described in here: https://redis.io/topics/client-side-caching I tried out the ServiceStack.Redis and StackExchange.Redis clients, but couldn't make either of them handle it. Can anyone help with a working example in…

VIEW QUESTION

Django channels without redis

I have a django app based on this tutorial that works perfectly. It uses Redis in the Channel layers CHANNEL_LAYERS = { 'default': { 'BACKEND': 'channels_redis.core.RedisChannelLayer', 'CONFIG': { "hosts": [('127.0.0.1', 6379)], }, }, } The problem I have is that…

VIEW QUESTION
Back To Top
Search