我正在从 中获取数据redis.HGetAll
,但没有找到将结果转换为我的 Struct 的干净方法
var object struct {
x int
}
result := redisClient.HGetAll(context.Background(), "the_h_key")
//TODO import the result content into the object
这个壮观的案例有什么功能吗?
现在我使用json
包(marshal,然后 UnMarshal 到 struct”。