Christopher Stone
Christopher Stone
Do you know which command caused the exception and with what arguments? I'm able to execute each of HIncrByFloat, HIncrBy, ZAdd without error.
Unable to reproduce on Linux+Mono either. Could you create a simple test case? E.g. csredis.ZAdd("test", Tuple.Create(123.456, "xyz")) if the issue is isolate to floating point numbers. Also, what Redis server...
Encoding should not care about Culture, I think. We are just mapping between byte[] and String (default is Encoding.UTF8). I'm curious if you try to set `client.Encoding = new UTF8Encoding(false)`...
Please send a small repeatable sample code block that I can use to reproduce the issue. Preferably with no variables in the Redis call arguments. On Mon, Sep 8, 2014...
The latest releases use SocketAsyncEventArgs for faster async performance... I wonder if Mono supports that?. I'll try to setup a Mono debug environment to see what's going on. On Tue,...
What version/platform of Mono are you using? I am able to run Select() and Auth() using Mono for Windows 3.2.3 and build 3.2.1 of csredis. Do you have a full...
Ok, I have repro'd on a Linux VM. Here is the offending stack: ``` System.NotImplementedException: The requested feature is not implemented. at System.Net.EndPoint.Serialize () [0x00000] in :0 at System.Net.Sockets.Socket.Connect (System.Net.EndPoint...
You can try the Develop branch using your own EndPoint (specifically, an IPEndPoint): ``` var ep1 = new IPEndPoint(IPAddress.Parse("x.x.x.x"), Port); // via IP var ep2 = new IPEndPoint(Dns.GetHostEntry("yourname").AddressList[0], Port); //...
CSRedis does not (yet) use connection pooling, so it sounds like you are exhausting your ephemeral port range with many closed connections hanging around in the TIME_WAIT state, which according...
@Stevenic, thanks for the info on the new SDK components. I like the addition of `context.turnState`, and that should eliminate the need for me to store the conversation state accessor...