Upgrade to ttlcache/v3

This commit is contained in:
Deluan 2024-06-21 17:57:43 -04:00
parent 29b7b740ce
commit 3993c4d17f
7 changed files with 72 additions and 78 deletions

View file

@ -23,7 +23,7 @@ func newCachedGenreRepository(ctx context.Context, repo model.GenreRepository) m
log.Error(ctx, "Could not load genres from DB", err)
panic(err)
}
r.cache = cache.NewSimpleCache[string]()
r.cache = cache.NewSimpleCache[string, string]()
for _, g := range genres {
_ = r.cache.Add(strings.ToLower(g.Name), g.ID)
}
@ -33,7 +33,7 @@ func newCachedGenreRepository(ctx context.Context, repo model.GenreRepository) m
type cachedGenreRepo struct {
model.GenreRepository
cache cache.SimpleCache[string]
cache cache.SimpleCache[string, string]
ctx context.Context
}