mirror of
https://github.com/photoprism/photoprism.git
synced 2025-10-05 16:57:17 +08:00
14 lines
175 B
Go
14 lines
175 B
Go
package entity
|
|
|
|
import (
|
|
"time"
|
|
|
|
gc "github.com/patrickmn/go-cache"
|
|
)
|
|
|
|
var cameraCache = gc.New(time.Hour, 15*time.Minute)
|
|
|
|
func FlushCameraCache() {
|
|
cameraCache.Flush()
|
|
}
|