I would like to convert an array table returned by Redis to be used in my C# code. How can I do that ?
After debugging the code, I can see that he returns an ArrayRedisResult
string script = @"return redis.call('HGETALL', @key)";
LuaScript lScript = LuaScript.Prepare(script);
var lLScript = lScript.Load("myServerinformation");
var result = lLScript.Evaluate("myDatabaseInformation", "myKey");
Thank in advance