(ctx context.Context, key string, post domain.Post)
| 14 | type PostCache interface { |
| 15 | Get(ctx context.Context, key string) (domain.Post, error) |
| 16 | Set(ctx context.Context, key string, post domain.Post) error |
| 17 | Del(ctx context.Context, key string) error |
| 18 | PreHeat(ctx context.Context, posts []domain.Post) error |
| 19 | GetList(ctx context.Context, page int, size int) ([]domain.Post, error) |
no outgoing calls