photoprism/internal/get/cover-cache.go
Michael Mayer e3bb8b19dd Routing: Prefix frontend UI routes with /library #840 #2466
Also improves migrations and updates the db schema docs.

Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-10-15 21:54:11 +02:00

21 lines
288 B
Go

package get
import (
"sync"
"time"
gc "github.com/patrickmn/go-cache"
)
var onceCoverCache sync.Once
func initCoverCache() {
services.CoverCache = gc.New(time.Hour, 10*time.Minute)
}
func CoverCache() *gc.Cache {
onceCoverCache.Do(initCoverCache)
return services.CoverCache
}