| 22 | } |
| 23 | |
| 24 | type rankingLocalCache struct { |
| 25 | posts []domain.Post |
| 26 | expireAt time.Time |
| 27 | ttl time.Duration |
| 28 | mu sync.RWMutex |
| 29 | logger *zap.Logger |
| 30 | } |
| 31 | |
| 32 | func NewRankingLocalCache(logger *zap.Logger) RankingLocalCache { |
| 33 | return &rankingLocalCache{ |
nothing calls this directly
no outgoing calls
no test coverage detected