Redis – golang : how to convert type interface {} to array
I have a JSON array with objects in Redis that I want to loop through it, but when I fetch the data, the type is interface{}, so I cannot range over type interface{} array := redis.Do(ctx, "JSON.GET", "key") arrayResult, e…