Beego Redis 的使用问题

nfwater · 2018-01-03 20:22:39 · 7592 次点击

这样用

fmt.Println("value:", cache.GetString(v))
#3
更多评论

应该只能这样,可以做下封装!

#1

像redis里面set []byte 类型, get的时候用unmarshal反序列化得到struct 或者 []byte转换成string

#2