go 语言直接使用 map 很方便map1 := make(map[string]int)key1 := map1["str1"]但是发现有些 go 项目源码偏向使用 Redi…