#go
Read more stories on Hashnode
Articles with this tag
我们要实现的功能是通过 Redis 来存储用户信息,但是存储之前我们先要从数据库里拿到这些数据。 我们先假装有一个数据库,因为要简单,所以直接用代码伪装一个数据库。 但是再此之前需要先定义一个 User 类。 type User struct { Id int64 `json:"id"...