Top "Stackexchange.redis" questions

A high performance .NET redis client library

Remove/Delete all/one item from StackExchange.Redis cache

I am using StackExchange.Redis client with Azure Redis Cache Service. Here is my class, public class RedisCacheService : ICacheService { private …

azure stackexchange.redis azure-redis-cache
StackExchange.Redis simple C# Example

I am looking for a very simple starter C# application for using StackExchange.Redis I have search over the web …

c# redis stackexchange.redis
StackExchange.Redis ConnectionMultiplexer.Connect() Intermittently Works

I am using StackExchange.Redis to talk to 3 different Redis instances: 1 on the same subnet and 2 remotely. Here's my configuration …

c# redis booksleeve stackexchange.redis
StackExchange.Redis timeout and "No connection is available to service this operation"

I have the following issues in our production environment (Web-Farm - 4 nodes, on top of it Load balancer): 1) Timeout performing …

stackexchange.redis
How to store list element in Redis cache

I have used StackExchange.Redis for c# redis cache. cache.StringSet("Key1", CustomerObject); but I want to store data like …

c# azure redis stackexchange.redis servicestack.redis
An exception of type 'System.Runtime.Serialization.SerializationException' occurred in mscorlib.dll but was not handled in user code

I have the following objects: [Serializable] public class Module { [Key] public int Id { get; set; } public string ModuleName { get; set; } …

c# asp.net-mvc serialization stackexchange.redis azure-redis-cache
No connection is available to service this operation: when using Azure Redis Cache

I have the following code which I use to get information from the cache. I dont know if maybe my …

c# azure stackexchange.redis azure-redis-cache
How to add Generic List to Redis via StackExchange.Redis?

For example, if I have a model called Customer public class Customer { public string FirstName { get; set; } public string LastName { …

c# redis stackexchange.redis
Get all keys from Redis Cache database

I am using Redis cache for caching purpose (specifically stackexchange.Redis C# driver. Was wondering is there any ways to …

c# caching stackexchange.redis
How to store user defined objects using StackExchange.Redis?

I was able to do this in ServiceStack.redis by using, IRedisTypedClient<ObjectName> myObj = redisClient.As<ObjectName&…

c# .net redis stackexchange.redis