Versions in this module Expand all Collapse all v1 v1.0.1 Sep 25, 2025 v1.0.0 Sep 25, 2025 Changes in this version + type IUserCacheRepository interface + Get func(ctx context.Context, key string) (*model.UserCache, error) + Set func(ctx context.Context, key string, value model.UserCache, ttl int64) error + type UserCacheRepository struct + func NewUserCacheRepository(client *redis.Client) *UserCacheRepository + func (u *UserCacheRepository) Get(ctx context.Context, key string) (*model.UserCache, error) + func (u *UserCacheRepository) Set(ctx context.Context, key string, value model.UserCache, ttl int64) error