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
2 answers
What is Azure Redis Cache?
What is Azure REDIS Cache? How to use it? When to use and when not to use it? Can I use it for a simple c# application which accesses data from MS-SQL server?
What is best source to get started with Azure Redis cache?

ritesh singh chauhan
- 21
- 2
- 8
0
votes
1 answer
Does redis delete all the keys when one master and its slave fails in redis cluster
I have a question. Suppose I am using a Redis cluster with 3 shards (with master and slave). I came to know that if a master and its slave fails at the same time Redis Cluster is not able to continue to operate. What happen after that.
Would Redis…

Pragmatic
- 3,093
- 4
- 33
- 62
0
votes
0 answers
Obtaining operations execution info for Redis Cache and App Service in Microsoft Azure
I have a storage account in Azure for which I have enabled diagnostic monitoring of Blob and Table services logs. Looking at these logs gives me information about the operations executed on the storage account - like ListBlobs, GetBlobs and whether…

Kiran Ramesh
- 345
- 3
- 15
0
votes
1 answer
Enabling diagnostics of Azure Redis Cache
I'm trying to enable diagnostics for Azure Redis Cache. Both redis and storage account are in same region (Us-West).
According to this article it should work.
After selecting storage account I am getting below generic error.
Any idea how to…

cement
- 2,905
- 1
- 23
- 20
0
votes
1 answer
Azure Redis Cache Slow log not logging anything
I'm trying to monitor how long queries are taking to my Azure hosted Redis cache.
It seems the Slow log only logs queries I make through Redis-cli directly when I remote into it rather than when my client application makes any queries to it.
I've…

litterbugkid
- 3,534
- 7
- 36
- 54
0
votes
0 answers
Could not load type 'Microsoft.Web.Redis.RedisSessionStateProvider' - AzureRedisSessionStateProvider
I am using Redis Azure cache for session, but when deployed in Azure I receive the following error, Could not load type 'Microsoft.Web.Redis.RedisSessionStateProvider'
I had tried many times by uninstalling and re-installing the packages and…

Viji
- 1
- 3
0
votes
0 answers
Measure Data Transfer for Azure Redis Cache
I would like to measure the amount of data transferred in and out of Azure Redis Cache.
Is this possible?
Thanks.

Marcus
- 675
- 2
- 8
- 24
0
votes
1 answer
azure redis cache key value concerns
I have a scenario where for my azure redis cache key to be unique. I'm inclined to use a value consisting of "---", e.g.
cacheId =…

myusrn
- 1,050
- 2
- 15
- 29
0
votes
0 answers
How to store list or key/value pair in Redis cache
I am deploying my projects in Azure since this will be deploy in multiple hosts, I want to change the values present in Session to Redis Cache. For storing single values its quite easy. But i'm not sure how to store a list or table having 5000…

ARUNBATI
- 1
- 3
0
votes
1 answer
Redis - ConfigurationOptions class (StackExchange.Redis)
I try to create CacheClient object using StackExchange.Redis.Extension library.
So far I know that I need two object for initialization :
_cacheClient = new StackExchangeRedisCacheClient(Serializer,ConnectionString)
Serializer and ConnectionString…

Radek
- 329
- 2
- 17
0
votes
1 answer
Can we create different areas(container) in one azure Redis Cache connection?
I need to create different areas under one redis cache service in azure. Is it possible to do that?

Mahesh Dhembre
- 1
- 1
0
votes
1 answer
How can I set client connection limit for Redis in .net application?
I don't want to allow a new client connection when the connection limit reached 10.
Is there any way to set client connection limit in redis through web.config file?

LTA
- 191
- 3
- 16
0
votes
1 answer
Azure Redis cache not expired properly
I am using Azure Redis Cache with 250MB storage, and am storing list of objects with expire time.When i save more list of objects with different key means expire time not working properly. If there is no data means its working fine, refreshing in…

BALA G
- 75
- 10
0
votes
1 answer
HashSet deleted from Redis Cache even when TimeSpan.MaxValue specified for expiry
I am using StackExchange.Redis client to access Azure Redis Cache. I am creating a hashset as below:
Database.HashSet("HashSetKey", "EntryKey", "EntryValue");
Database.KeyExpire("HashSetKey", TimeSpan.MaxValue);
Even though I am specifying expiry…

souser
- 33
- 1
- 8
0
votes
1 answer
Does Azure Redis work over http?
Does Azure Redis support transport over http. I am aware of the setting that allows me to choose whether to enable SSL or not. But it seems to me the connection to Azure Redis happens over TCP.
"Every Redis Cluster node requires two TCP connections…

Arif
- 17
- 1
- 8