(ctx context.Context, id uint64)
| 27 | type UserExampleCache interface { |
| 28 | Set(ctx context.Context, id uint64, data *model.UserExample, duration time.Duration) error |
| 29 | Get(ctx context.Context, id uint64) (*model.UserExample, error) |
| 30 | MultiGet(ctx context.Context, ids []uint64) (map[uint64]*model.UserExample, error) |
| 31 | MultiSet(ctx context.Context, data []*model.UserExample, duration time.Duration) error |
| 32 | Del(ctx context.Context, id uint64) error |
no outgoing calls