Sam Cook

Results 29 comments of Sam Cook

I've just tried a test case and the error I see is: `System.ArgumentException : Connection can't have ConnectionIdleLifetime 00:00:03 under ConnectionPruningInterval 00:00:10` Assuming this is the same issue you're referring...

Also affects `Any` with `!=` ```csharp this.Model.DbObjects.Any(x => x.Foo != "hello").ShouldBe(true); // actually returns false ``` ```sql SELECT ( SELECT CASE WHEN ((EXISTS ( SELECT "T0"."DbObjectId", "T0"."Foo" FROM "DbObject" AS...

For reference, this is what EntityFramework 6 generates: ```csharp db.DbObjects.All(x => x.Foo == "hello"); // returns false ``` ```sql SELECT CASE WHEN (NOT EXISTS ( SELECT 1 AS [C1] FROM...

Unsurprisingly, the same issue can also apply to the predicates for `Where`, `Count`, etc...

Affects both SQL server and sqlite, haven't tried mysql or postgres

Are you two servers a master/replica configuration, a Redis Cluster (with keys sharded across both), or two independent servers? And in your RedLockFactory configuration, are you only connecting to one...

Yes, that is possible. If an attempt to acquire a lock in an instance doesn't complete within the timeout it is treated as a failure, and if there aren't enough...

I haven't used Redis on AWS myself, so I'm not too sure whether they do things any differently to a standard Redis Cluster. > Does Redlock (or the underlying stackexchange...

Hi, I haven't tried .NET Core 3 yet, but I would definitely want RedLock.net to be compatible. Are the Microsoft.Extensions.Logging 3.0.0 packages API compatible with the earlier versions? There isn't...