photoprism/internal/get/thumb-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
291 B
Go

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