azure-redis-cache Questions

4

Solved

I would like to know how to clear Azure Redis Cache from portal or any other easy way to clear all the keys ? I am using azure redis cache for my azure cloud service and I would like to know any ea...

4

We currently use Redis as our persistent cache for our web application but with it's limited memory and cost I'm starting to consider whether Table storage is a viable option. The data we store is...
Cockeyed asked 18/10, 2016 at 8:44

3

We have implemented Azure Cache Redis for our project. But the problem is Azure Cache query performance is slower than db query. For a query while Redis response average is 115ms the db query avera...
Haygood asked 22/7, 2022 at 10:4

3

Solved

I'm new to redis so I'm doing something wrong, I'm sure: I've stored roughly 16,000 key/values in Azure Redis. I used the following to write the keys/values foreach (var worksheet in wksList) ...
Aeromechanics asked 18/10, 2014 at 10:26

5

Solved

I am using StackExchange.Redis client with Azure Redis Cache Service. Here is my class, public class RedisCacheService : ICacheService { private readonly ISettings _settings; private readonly ID...
Centripetal asked 2/7, 2014 at 12:44

10

Solved

I have the following piece of code to connect to azure redis cache. public class CacheConnectionHelper { private static Lazy<ConnectionMultiplexer> lazyConnection = new Lazy<ConnectionMul...
Radiocarbon asked 17/6, 2015 at 15:7

7

Solved

I have the following code which I use to get information from the cache. I dont know if maybe my app is opening too many connections or just this error is due to a transient failure on azure redis ...
Womankind asked 9/7, 2015 at 21:5

1

I'm trying to use StackExchange.Redis on Azure WebApp and need to run some Lua scripts. The recommended way is to load the scripts to the server but I have difficulty understanding the correct pat...
Grange asked 21/7, 2015 at 6:16

1

Solved

I need to implement a cache in my application using Azure Cache for Reddis but I went to some blogs where I have an option to store my responses or data using Azure CDN. Could someone suggest me wh...
Underwaist asked 14/8, 2020 at 8:37

4

Solved

Asp.net mvc 5 application web config file is sessionState mode="Custom" customProvider="RedisSessionProvider"> providers> add name="RedisSessionProvider" type="Microsoft.Web.Redis.RedisSes...
Arsonist asked 9/12, 2015 at 13:10

1

Solved

I am a little bit lost. I am reading Microsoft documentation for ASP.NET Core caching using Redis. And the documentation suggests to use Microsoft.Extensions.Caching.StackExchangeRedis which is an ...
Sedda asked 21/1, 2020 at 18:59

2

I'm connecting to Azure Redis and they show me the number of open connections to my redis server. I've got the following c# code that encloses all my Redis sets and gets. Should this be leaking con...
Manlove asked 25/2, 2016 at 2:21

2

Solved

We are using C1 Azure Redis Cache in our application. Recently we are experiencing lots of time-outs on GET operations. According to this article, one of possible solutions is to implement pool of...
Around asked 13/4, 2015 at 11:10

2

Solved

Is there an upper limit to the suggested size of the value stored for a particular key in Redis? Is 100KB too large?
Sorehead asked 4/4, 2019 at 13:29

2

Solved

We have a Redis Cache on Azure Standard 2.5gb. We observe the following behaviour: Every now and then, we observe large drops in memory usage. It appears that lots of resources are being evicted...
Ginni asked 3/12, 2018 at 15:38

3

Solved

I am currently hosting my redis cache server on Azure, and have signalR relying on it as the backbone using the following... GlobalHost.DependencyResolver.UseRedis("Server",port,"password","eventK...
Televisor asked 10/4, 2015 at 20:35

1

Solved

We have requirement in the WebAPI, to pull the payload from external API in the form of JSON, cleanse and post it into Azure Sql. For this requirement we are currently relying on blob storage, wher...

2

Solved

UPDATE: I've figured it out. See the end of this question. I have an Azure App Service running four sites. One of the sites has two deployment slots in addition to the primary one. Recently I've...

1

Solved

Is there an easy way to see what's in my Redis Cache on Azure? I mean some type of tool? I know how to do it programmatically but sometimes while writing code, I want to be able to quickly see wha...
Intestate asked 9/2, 2017 at 22:12

2

Solved

I have read that in order to connect to Azure Redis cache is best to follow this practice: private static ConnectionMultiplexer Connection { get { return LazyConnection.Value; } } private stati...
Clustered asked 11/9, 2015 at 13:58

0

Slightly at the end of my rope with this one :) I've got a prototype (too big with too many dependencies to share) that is using redis for multiple reasons - one of which is to store a serialized v...
Deist asked 4/5, 2016 at 17:9

3

Solved

We deployed our application to Azure. It is using the Azure Redis Cache and we are experiencing quite a few timeouts. Namely: [TimeoutException: Timeout performing GET textobjectDetails__23290_Tex...
Carmichael asked 10/4, 2015 at 20:18

1

Solved

I have a scenario where I plan to set the Azure Redis Cache entry expiration time to ensure we don't keep data that is known to be of no value after a specific point in time, e.g. cache.StringSet...
Gujranwala asked 31/1, 2016 at 5:37

3

Solved

Caveat: Okay so this is a weird one, and i'm not sure if SO is the right place. I have an Azure Website connecting to an Azure Redis Cache instance. (using StackExchange.Redis) Everything was gre...

1

Solved

I'm working on Azure Redis Cache with Azure Search but I couldn't find any clear description about concurrency of Redis Cache. Here is the case. While overwriting an existing cache item, is it pos...
Dispersive asked 7/9, 2015 at 11:10

© 2022 - 2025 — McMap. All rights reserved.