| 30 | } |
| 31 | |
| 32 | type postCache struct { |
| 33 | client redis.Cmdable |
| 34 | expiration time.Duration |
| 35 | prefix string |
| 36 | emptyPrefix string |
| 37 | listPrefix string |
| 38 | listPubPrefix string |
| 39 | pubPrefix string |
| 40 | lockPrefix string |
| 41 | } |
| 42 | |
| 43 | func NewPostCache(client redis.Cmdable) PostCache { |
| 44 | rand.Seed(time.Now().UnixNano()) // 初始化随机数种子 |
nothing calls this directly
no outgoing calls
no test coverage detected