Results 4 comments of Oleksii Ruban

we are using `IDatabaseAsync.ScriptEvaluateAsync`, in particular this overload ``` Task ScriptEvaluateAsync(byte[] hash, RedisKey[] keys = null, RedisValue[] values = null, CommandFlags flags = CommandFlags.None); ``` Just in case, we deal...

@NickCraver we are having a fork that last time was merged with StackExchange.Redis master at Nov, 13. Please, as you say some work has been done, may you point to...

thank you, I have checked the corresponding code and it should be exactly what we need. Though, it seems to be a bit redundant to have hash calculation for every...

it is more like we use `ScriptEvaluateAsync` directly just because `LoadedLuaScript.EvaluateAsync` currently does nothing special, as it just propagates call: ``` public Task EvaluateAsync(IDatabaseAsync db, object ps = null, RedisKey?...