StackExchange.Redis.Extensions icon indicating copy to clipboard operation
StackExchange.Redis.Extensions copied to clipboard

Results 73 StackExchange.Redis.Extensions issues
Sort by recently updated
recently updated
newest added

Is it possible to get a collection of objects with multiple keys but using the replicas? The prefer replica option isn't available for GetAll methods

I want to save and read from REDIS an object with interface included: `public class TestObj { public Guid Id { get; set ;} public ICollection Shapes { get; set;...

**Describe the bug** Error when i call SearchKeysAsync ``` System.MissingMethodException: Method not found: 'Boolean StackExchange.Redis.IServer.get_IsReplica()'. em StackExchange.Redis.Extensions.Core.ServerIteration.ServerEnumerable.d__4.MoveNext() em System.Linq.Enumerable.d__25`1.MoveNext() em System.Linq.Buffer`1..ctor(IEnumerable`1 source) em System.Linq.Enumerable.ToArray[TSource](IEnumerable`1 source) em StackExchange.Redis.Extensions.Core.Implementations.RedisDatabase.d__38.MoveNext() --- Fim do...

While this extension offers a lot, one thing that I feel is missed is the support for Compression/Decompression as I would really want to not store the huge content of...

enhancement

**Describe the bug** Hi, the documentation for the SslProtocols configuration property seems incorrect and a copy/paste error. Extract from Git /// /// Gets or sets the **connection string**. In wins...

documentation

We had this library integrated into windows service that servers http requests. We noticed that service started to consume a lot of RAM/CPU resources. Another symptom was that redis cluster...

bug
question
investigating

When I tried to add the dependencies as a singleton, I had the following error on `services.AddSingleton((provider) => provider.GetRequiredService().GetDbFromConfiguration());`: ``` System.InvalidOperationException: 'Cannot resolve scoped service 'StackExchange.Redis.Extensions.Core.Abstractions.IRedisCacheClient' from root provider.' ```...

question

**Describe the bug** When I monitor redis using redis-cli monitor I can see that SREM is adding \" to the start and end of member **To Reproduce** I have a...

Hi@imperugo Let me describe the usage scenario. GetAsync (cachekey) The return type is JObject, JDocment..., I need to specify the value return type. Use GetAsync(cachekey, typeof(MyClass)) to return the type...

I have one webjob that is continously inserting data into redis I have another time trigger function to read data from the same redis cache after every 5 minutes. //...