Azure Redis Cache is based on the popular open-source Redis cache. It gives you access to a secure, dedicated Redis cache, managed by Microsoft and accessible from any application within Azure.
Questions tagged [azure-redis-cache]
347 questions
0
votes
1 answer
Azure Redis Cache: is it possible to connect to the cache in an integration test?
I am running integration tests against an Azure Redis Cache. This is my very straightforward cache implementation:
public class RedisCacheEngine : ICacheEngine
{
private static readonly Lazy LazyConnection = new…

Rob Lyndon
- 12,089
- 5
- 49
- 74
0
votes
0 answers
Where to geographically create and how to make azure redis cache perform when traffic comes from all over the world?
Been looking for a way to have my azure redis cache behave pretty much like the web apps and traffic manager. I.e. Route the request to the nearest cache instance depending on where you are in the world.
I have one azure redis cache but i want to…

Shumii
- 4,529
- 5
- 32
- 41
0
votes
1 answer
Redis Cache Errors with Azure
We are including Redis cache in our Saas application in Azure.
But we are having some problems, we see these types of errors from time to time
Timeout performing EVAL, inst: 2, queue: 23, qu: 0, qs: 23, qc: 0, wr: 0, wq: 0, in: 65536, ar: 0,
IOCP:…

Jsanchez
- 83
- 9
0
votes
1 answer
What could be a reason of timeout exception using StackExchange.Redis?
I'm getting this error from time to time performing operations with StackExchange.Redis 1.2.0.0 on Azure Redis from ASP.NET app running on Azure App Service:
Timeout performing EXISTS bookmark:afad5065-29b1-48c7-8bbc-38ddcc9ab4e4type:1, inst: 1,…

savbace
- 185
- 1
- 16
0
votes
1 answer
Timeout Exception while retrieving from Redis Cache at the same place always
We are receiving following timeout exception while retrieving data from Redis cache.
'Timeout performing GET inst: 2, mgr: Inactive, err: never, queue: 3, qu: 0, qs: 3, qc: 0, wr: 0, wq: 0, in: 18955,
IOCP: (Busy=4,Free=996,Min=2,Max=1000), WORKER:…

Vicky
- 624
- 2
- 12
- 35
0
votes
2 answers
Error connection to Azure Redis Cache using StackExchange.Redis
I am trying to connect to Azure Redis cache using StackExchange.Redis.StrongName V1.2.1
My code looks like this
string redisServer = ConfigManager.GetValue("RedisServer");
redis = ConnectionMultiplexer.Connect(redisServer);
redisDB =…

Emad Gabriel
- 3,677
- 7
- 37
- 49
0
votes
0 answers
Redis Instance in Azure Seems to delete keys automatically
We are trying to benchmark performance of Redis in Azure. To that end, we created a Premium Tier Redis node in Azure, and are trying to put simple Key-value pairs.
We have tried both Jedis and Redis-cli. When we are actually running these, we are…

D159
- 243
- 1
- 3
- 11
0
votes
1 answer
Install Redis Cache in Library Project
We have an MVC 5 WebApp and several class libraries all part of the same solution.
The WebApp is in Azure and we are using the StackExchange Redis as our caching.
We wanted to know if it is ok to add the Exchange Redis package to one of our class…

user2981411
- 859
- 12
- 34
0
votes
1 answer
ASP.NET HttpSession.Abandon not closing redis connection
I'm using redis as my SessionState provider, but i cant get the infrastructure to close the connection when I Session.Abandon()... so if a user is simply logging out so another one can login (very common scenario for me, since they share a…

Leonardo
- 10,737
- 10
- 62
- 155
0
votes
1 answer
Timeout error in redis cache
I get this error when I cache using azure redis cache. It works in my office network but not with home internet connection. How I can fix this issue.
"Timeout performing SET PortalViewds-pup-lounge, inst: 0, mgr: Inactive, err: never, queue: 5, qu:…

Rushan
- 95
- 1
- 5
0
votes
1 answer
Azure Redis shows active connection when unused
I've just created a dedicated (not shared) Redis instance on Azure, and it already shows that there are active connections and operations. I haven't even gotten the chance to connect to it myself, so I know I don't have any active connections. I…

thallium
- 33
- 1
- 5
0
votes
3 answers
Redis Keyspace Notifications with flushdb
The keyspace notifications have been essential for a recent web api I've been
developing.
We have redis setup in azure. The api mostly works, we use notifications to figure out if data on memory cache needs to be updated.
Right now, we want to…

Arthas
- 163
- 1
- 7
0
votes
1 answer
SailsJS deployment on azure is not stable
I am using Redis for session management on SailsJS. I am facing two issues frequently on Azure:
user config hook took too much time to load. I get this error quite often.
Redis connection keeps on dropping. I am using node_redis to connect to azure…

geekAnurag
- 1
- 2
0
votes
1 answer
Azure Redis Cache: "role discovery data is unavailable"
I'm trying to connect to an instance of Azure Redis Cache from my local dev machine. I'm using StackExchange.Redis like so:
var lazyConnection = new Lazy(() =>
{
return ConnectionMultiplexer.Connect(
…

urig
- 16,016
- 26
- 115
- 184
0
votes
2 answers
StackExchange.Redis is timing out since connecting to Azure Redis
Exception Message: Timeout performing GET allBots, inst: 1, mgr:
Inactive, err: never, queue: 7, qu: 0, qs: 7, qc: 0, wr: 0, wq: 0, in:
65536, ar: 0, IOCP: (Busy=2,Free=998,Min=1,Max=1000), WORKER:
(Busy=0,Free=2047,Min=1,Max=2047)
Timeout…

Patrick Desjardins
- 136,852
- 88
- 292
- 341