Marc Gravell
Marc Gravell
Yeah, it really is; semver is fine in principle, but when you have a library with lots of consumers, smashing the API *on every method* isn't really something you want...
Indeed. In general, there are two types of breaks: - breaks that require actual code changes - breaks that require a recompile of code that references the library, but no...
> Personally I would never update to a new package of anything without a full recompile, tests and re-deploy of everything In the case of intermediate libraries, that is somewhat...
I think we can probably do this quite simply, perhaps using the existing routing command-flags, i.e. if it is anything other than `DemqndPrimary`,and it is a v7+ server: use the...
If this is non-cluster, then yes: replicas need to be in the configuration - but you can do it more simply via the config string `localhost:6379,localhost:6380,abortConnect=False` - the library will...
I had a quick look at implementing, and it isn't quite as simple as I would have hoped; since the default of `CommandFlags` is `PreferMaster`, the above implementation would mean...
spike of 1 for illustration only; note this could easily be changed to option 2; https://github.com/StackExchange/StackExchange.Redis/pull/2207
Well this is ... bad. Very bad. That's definitely output stream data in the payload, so something has gone horribly wrong here - either a bad length encode, or a...
Sadly, no, I can't think of a pre-existing switch that we could toggle here. I guess the first thing is to try and repro it somehow, presumably by bulk loading...
Not having TLS to contend with is a huge relief - it hugely simplifies the work here. Question: the input here - what is it? Regular byte arrays? Leased arrays?...