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
4 answers
Azure Redis Cache + WordPress On Azure
I've followed the instructions in this post to configure this but redis status is always showing not connected. I tried to turn on diagnostics on redis cache instance but it doesn't even seem like any requests are getting to the service itself. Any…

Ram Gopinathan
- 133
- 2
- 8
0
votes
2 answers
How to avoid duplicate urls with same key/value query-string at different places?
I am using Azure Redis cache with my key is the request url. I have a web-api2 / mvc5 application which returns the cached result from Redis server if key with request url exist there otherwise it will process the request and save the result in…

Imran Qadir Baksh - Baloch
- 32,612
- 68
- 179
- 322
0
votes
1 answer
Azure Redis Cache - HashSet Timeout Error
I'm getting a Timeout error while trying to run this code :
List entries = new List();
for (i = 0; i < 10000; i++)
{
var extension = new Extension
{
…

Rodrigo Longo
- 1,369
- 10
- 15
0
votes
1 answer
Is it possible to change amount of Azure Redis databases?
The following article tells that the "default" Redis server configuration in Azure has 16 Redis databases: https://msdn.microsoft.com/en-us/library/azure/cbe6d113-7bdc-4664-a59d-ff0df6f4e214#RedisConfig.
It also states that:
Any values that are…

Eugene D. Gubenkov
- 5,127
- 6
- 39
- 71
0
votes
1 answer
Why Azure portal is showing Redis Connections Connected client 4.99K?
I have singleton azure-redis database client used in our application. However on Azure portal it shows connected clients 4.99K. I am not sure who are those clients and why it is showing 4.99K clients connected when I have singleton instance?
Sample…

dotNet Decoder
- 511
- 5
- 8
0
votes
2 answers
Azure Redis Cache Batch Operations / Multiple Operations
Given a list of Keys, I want to pull out multiple values from Azure Redis Cache.
How do we perform multiple operations at the same time with Azure Redis Cache?
Our data is a int/ComplexObject pair. Our data is located in SQL Server. We currently get…

Simcha Khabinsky
- 1,970
- 2
- 19
- 34
0
votes
0 answers
Azure Redis Cache: super slow List*Pop/Push operations
I'm working with StackExchange.Redis library, with ListLeftPush() and ListRightPop(). They are super slow. The same code on the standalone Redis is thousand times faster.
Maybe the Azure Redis Cache is suboptimal for these operations?
Somebody…

Leonid Ganeline
- 617
- 6
- 17
0
votes
2 answers
"There are no locations available." when trying to create an Azure Redis Cache
When I try to create a new Azure Redis Cache and choose a location I just get a "There are no locations available." message.1 Setting everything else first still results in the same error. Refreshing the page doesn't resolve the issue. The…

Micah Zoltu
- 6,764
- 5
- 44
- 72
0
votes
1 answer
Session_start not being called on logout -> login with session state using azure redis cache
As MS announced to replace shared cache to new azure redis cache i have migrated my app to use redis cache instead of azure shared cache according to this
Now i am facing one issue where on logout -> login it would not call session_start method…

Arun Rana
- 8,426
- 14
- 67
- 107
0
votes
0 answers
Enterprise library transient fault handling together with StackExchange.Redis to connect to azure redis cache
I'm currently using MS Enterprise Library 6 Transient Fault Handling application block. I've provided an invalid RedisCacheKey to simulate service disruptions.
Transient Fault handling
var retryStrategy = new FixedInterval(3,…

Lee Gary
- 2,357
- 2
- 22
- 38
-1
votes
1 answer
Am unable to filters on Date fields with Redis
Am unable to filter on Date fields with Redis-search eg: entityStream.of(Object.class), at the same time, being able to filter other data types but not with Date type
tried with the below patterns but not working
SearchStream search =…
-1
votes
1 answer
How reliable is Redis Cache for storing data with Cosmos DB
I am planning on implementing Redis cache to improve my SaaS based application in azure. And I am thinking of storing credentials (azure Key/Vault info) in Cache. Currently, I have seperate cosmos DB instance which fetches information for each…

e2eDev
- 301
- 4
- 12
-1
votes
1 answer
How to fix Timeout awaiting response issue when using Azure Redis Cache?
I have a method which takes input as list and store each item in Azure Redis cache.
public async Task StoreAsBatch(T data)
{
var storeData = new List>();
try
{
foreach…

akhil
- 1,649
- 3
- 19
- 31
-1
votes
2 answers
Azure Redis Cache Timeout and No Connection error
I keep getting these errors related to Azure Redis once in a while from my API web app on Azure
Timeout performing EVAL, inst: 1, queue: 2, qu: 0, qs: 2, qc: 0, wr: 0, wq: 0, in: 0, ar: 0, clientName: RD00155DD0C827, IOCP:…

Elveryx
- 151
- 1
- 8
-1
votes
1 answer
Redis Cache Clear C#
I try to remove data by using the method above
public virtual void ClearOrderTypeCache()
{
orderTypeList = null;
cacheService.Set(orderTypeCacheKey, null);
}
But I've got an exception when I try to use…

Sergiu
- 15
- 1
- 4