Questions tagged [azure-redis-cache]

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.

347 questions
0
votes
2 answers

Not able to connect with Azure Redis cache

I completely fed up with Azure Redis cache with function. Below line of "Test Code" working in console application but not working with Azure Function. IConnectionMultiplexer connection =…
Pankaj Rawat
  • 4,037
  • 6
  • 41
  • 73
0
votes
1 answer

Is it possbile to create redis cache with both Geo replica and Persistence?

On Azure portal, the Geo-replication is disabled if the Data persistence is enabled. why? Is it possbile to create redis cache with both Geo replica and Persistence?
Youxu
  • 1,050
  • 1
  • 9
  • 34
0
votes
1 answer

Azure Redis Cache automatically clearing PubSub channels

I have four different Redis Cache subscriptions set up in Azure. I also have four App Services that each use one of those Redis Cache subscriptions. The four App Services/Redis Cache subscriptions are for the same code base, but different…
Courier
  • 185
  • 2
  • 11
0
votes
1 answer

Single Sign on implementation for my sites in same domain

We have a application running already lets say a.example.com, now we are planning to add one more application as b.example.com. We are already storing user session of a.example.com in Azure Redis cache. Is there a simple way to provide SSO between…
Mawy
  • 85
  • 9
0
votes
1 answer

Redis timeout after UnableToResolvePhysicalConnection exception

We are investigating an issue on an api on Azure connecting to Azure Redis Cache (tier C2 standard), since yesterday evening to today early morning (nearly 12 hours) we've seen a hundreds of timeouts to redis like this Timeout performing GET…
0
votes
1 answer

Azure Redis Master-Slave

Is it possible to implement Master-Slave Feature which is provided as an Normal Redis Feature in Azure Redis too? As per my understanding internal master-slave is automatically implemented in Standard Pricing Tier,but can we achieve specifying our…
Logeswaran D
  • 127
  • 1
  • 7
0
votes
0 answers

Visualising redis storage

My Redis is filling up rather quickly and I am trying to find a way to visualise what is taking up the space. Is there a tool or command that will help me visualise whats taking up the storage? Ideally, I would like to know: Key prefix by storage…
Dan Benjamin
  • 880
  • 1
  • 9
  • 25
0
votes
1 answer

Azure Redis Cache Authorization Header

I am working on the Azure Redis Cache, and I am using a REST API to create a cache. The response I get is : HTTP/1.1 401 Unauthorized { "error": { "code": "AuthenticationFailed", "message": "Authentication failed. The 'Authorization'…
badcoder29
  • 51
  • 1
  • 5
0
votes
1 answer

What happens in Redis cache with Volatile-LRU maxmemory policy when memory get filled?

I have a redis cache in Azure with maxmemory policy set as Volatile-LRU. When writing to Redis, I am not adding an expiry time for the key. In this case, what will happen when the cache memory get filled?
0
votes
0 answers

Redis Cache on 2 projects (Client Site & Admin Site)

Hi can I use the same Cache service for two different laravel application? The scenario is I need to save users products in cache and once the user adds a certain product, the admin needs to validate it first, after the admin validated the product…
Critics
  • 59
  • 11
0
votes
0 answers

To store Array of data to Azure Redis Cache

I want to store the list of data as given below in the Azure redis cache. Designation(KEy) ---------- SoftwareEngineer Graduate Trainee Seniormanager I am new to this Redis cache and learning the stuff and working on. I am able to pass the values…
Innova
  • 4,831
  • 21
  • 76
  • 107
0
votes
2 answers

How to connect to slave instance of an Azure Redis Cache

The standard and premium pricing tiers of Azure Redis Cache provide master/slave replication: Standard—A replicated cache in a two-node primary/secondary configuration managed by Microsoft, with a high-availability SLA. But the Azure portal…
Malt
  • 28,965
  • 9
  • 65
  • 105
0
votes
0 answers

Can we add only necessary ciphers for an Azure Redis Cache hosted in a Virtual Network

I have hosted my Azure Redis Cache inside a Virtual Network and our penetration testing team has suggested to allow required Cipher suites as per the company norms. Is it possible to alter the cipher suites.
0
votes
1 answer

How to capture the logs for Azure Redis Cache

I have created a premium tier Azure Redis Cache and i wanted to see logs such as from which IP, port the azure redis cache is being accessed etc. I know we have metrics option to view Cache Hits, Misses etc but i want to see the in detail…
0
votes
1 answer

Azure Logic App creation of Redis Cache requires x-ms-api-version

I'm building an Azure Logic App and try to automate the creation of an Azure Redis Cache. There is a specific action for this (Create or update resource) which I was able to bring up: As you can see I entered 2016-02-01 as the api version. I was…