mirror of
https://github.com/navidrome/navidrome.git
synced 2025-04-03 20:47:35 +03:00
Upgrade to ttlcache/v3
This commit is contained in:
parent
29b7b740ce
commit
3993c4d17f
7 changed files with 72 additions and 78 deletions
|
@ -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
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue