csredis icon indicating copy to clipboard operation
csredis copied to clipboard

.NET client for Redis and Redis Sentinel (2.8). Includes both synchronous and asynchronous clients.

Results 31 csredis issues
Sort by recently updated
recently updated
newest added

I have a method, which add data to HSET The key of рash is the path as `Path.Combine` ``` var baseAddress =Path.Combine(address,obj.GetType().FullName); var pattern = baseAddress + "*"; var keys...

This branch attempts at a conversion of the library to .NET Core with project.json/xproj files. I'm motivated to do this because another library I use (Disque.Net) uses this library, and...

i use redis-client publish a message . i subscribe in a Console app. my code ![image](https://user-images.githubusercontent.com/48544629/90124237-a3b91180-dd92-11ea-95fe-4bc075ae891d.png)

build webgl app use csredis error:socket..

CSRedis is a great open source project. I personally used it in the company in 2016. In the past three years, I have published the changed source code on GitHub...

I write test codes following the example code in readme.md: using (var redis = new RedisClient("someIP")) { // fire-and-forget: results are not captured for (int i = 0; i <...

I have a strange issue with csredis' RedisSentinelManager(). I am adding sentinels as below ``` var sentinel = new RedisSentinelManager(); sentinel.Add("ttekhysred01", 20001); sentinel.Add("ttekhysred01", 20002); sentinel.Connected += (s, e) => sentinel.Call(x...

In case sentinels are communicating with each other with internal IP there is a need to add host mapping to external IP so when sentinel returns the IP of redis...

Hey guys I'm sorry for my ignorance but could you please explain what the benefits of `ExpressionTree` based implementation in `Serializer.cs` ?