с
Size: a a a
с
EB
ЕО
с
ЕО
ВГ
МП
с
ЕО
VS
var value []byteполучаю ошибку компиляции: cannot take the address of cache["key"]
cache := map[string]map[string]string{}
cache["key"] = map[string]string{}
_ = json.Unmarshal(value, &cache["key"])
var value []bytehttps://play.golang.org/p/xC12qPTaMfN
cache := map[string]map[string]string{}
tmp := map[string]string{}
_ = json.Unmarshal(value, &tmp)
cache["key"] = tmp
DP
var value []byteполучаю ошибку компиляции: cannot take the address of cache["key"]
cache := map[string]map[string]string{}
cache["key"] = map[string]string{}
_ = json.Unmarshal(value, &cache["key"])
var value []bytehttps://play.golang.org/p/xC12qPTaMfN
cache := map[string]map[string]string{}
tmp := map[string]string{}
_ = json.Unmarshal(value, &tmp)
cache["key"] = tmp
VS
DP
VS
VS
DP
ЕО
var value []byteполучаю ошибку компиляции: cannot take the address of cache["key"]
cache := map[string]map[string]string{}
cache["key"] = map[string]string{}
_ = json.Unmarshal(value, &cache["key"])
var value []bytehttps://play.golang.org/p/xC12qPTaMfN
cache := map[string]map[string]string{}
tmp := map[string]string{}
_ = json.Unmarshal(value, &tmp)
cache["key"] = tmp
VS
E
Н