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
1 answer

Info about the active client connections in an Azure Redis Cluster

I am new to Azure and was trying to understand if I could use Azure Redis in my application. Assuming, the application to run at a decent scale(currently don't have the exact numbers), my main point to ask this question is, as per the pricing tier…
nikhil
  • 75
  • 1
  • 10
0
votes
2 answers

Which Azure cloud storage to use for my requirement?

WebApplication1 is running on large number of instances (around 100,000) across the geographical location. WebApplication2 is running on only one machine and will be adding/updating records in the cloud storage. Now I want to sync all these…
0
votes
1 answer

Azure Redis Cache with API Management

I have set up an Azure Redis cache to use with APIM. I know it doesn't make sense to cache 'Post' methods but can I put a policy at the root level of APIM and is it smart enough to cache the relevant get methods without me having to apply the policy…
David
  • 1,203
  • 6
  • 25
  • 48
0
votes
1 answer

How to use dependency injection for key value pair class to use Redis Cache

Here is my code: public class RedisCache : ICache where TVal : class { TimeSpan _defaultCacheDuration; Lazy _connection; public RedisCache(string connectionString, TimeSpan…
Avinash
  • 79
  • 1
  • 7
0
votes
1 answer

How to update/refresh Azure Cache for Redis when change occurs in records in Database?

I hope all of you are doing well. I have a few questions related to Azure Cache for Redis I am using Azure Cache for Redis to store all my customer(s) ( I am doing so because I have a minimum of 25000 customers) & each time fetching those many…
0
votes
1 answer

How to cache Client oAuth Token in Azure Logic Apps and use it for the subsequent requests until the token gets expired?

I would like to Cache the Client OAUTH token and use the same token for the subsequent requests in the Azure Logic Apps. Only when the token is expired, I want to hit the access token URI and fetch the new token. How is this possible in Logic Apps?…
0
votes
1 answer

Getting "StackExchange.Redis.RedisConnectionException" while running tests with runsettings

I am facing an issue while trying to run the test using runsettings file. We have one redis cache with SSL enabled which we are trying to access from our tests. StackExchange.Redis.RedisConnectionException: No connection is available to service this…
0
votes
0 answers

Best way to connect to Azure resources via .net core 2.1

After converting .net framework 4.6.2 web api application to net core 2.1, performance issue observed, after profiling the code & taking timeline for the method calls invloved in a particular request/response most of the time difference observed in…
0
votes
1 answer

connection strings for azure cache for redis to deploy in aks cluster

Can anyone provide me a sample yaml to integrate connection strings for azure cache for redis in one of the pod container to deploy in aks cluster?
0
votes
1 answer

Azure redis cache for caching secrets

I wanted to know what is the recommended way to cache and access secrets in distributed setup with service fabric backing our applications and services. Storing secrets in key vault is a known thing, but a distributed cache solution will help with…
0
votes
2 answers

Azure redis cache SetString multiplexer error

I'm attempting to use Azure redis cache to reduce hits to my database, but I'm stuck on something very weird. My WebMethod looks as such. [WebMethod] public static string HistoricalData(string searchterm, string topicId) { string constr…
Voxum
  • 103
  • 2
  • 7
0
votes
1 answer

Redis PubSub Reconnect with Jedis

Trying to include the code related to azure redis autoreconnect if any network error occurred in Redis PubSub connection. Any help/advice would be appreciable. Below is my Redis Config code. public class RedisConfig { @Bean …
Balaji211
  • 257
  • 1
  • 5
  • 18
0
votes
1 answer

Azure functions to consume messages from event hub and storing them in azure cache for redis

Writing an azure function to consume event hub messages and writing to the azure cache for Redis. Not able to find a solution for following consuming messages from the event hub continuously (there is binding available but not sure to integrate…
0
votes
1 answer

Writing unit test for the azure redis cache in nodejs

I am trying to write a unit test case using mocha framework, where I have to mock an azure redis cache...Can someone help me on how to mock cache for unit test case purpose using node.js. const redis = require('redis'); const…
0
votes
1 answer

Data transfer from Azure event hub to Azure Redis Cache

We've have product data in Azure event hub which is coming from external system, now our requirement is to send this data to Azure Redis cache from event hub. Is there any Out of the box way or standard function in Azure to implement…