photoprism/internal/thumb/cache.go
Michael Mayer 286f06d894 Config: Add options for HTTP cache control #3297
Signed-off-by: Michael Mayer <michael@photoprism.app>
2023-03-20 11:40:46 +01:00

16 lines
281 B
Go

package thumb
import "strconv"
// MaxAge represents a cache TTL in seconds.
type MaxAge int
// String returns the cache TTL in seconds as string.
func (a MaxAge) String() string {
return strconv.Itoa(int(a))
}
var (
CacheTTL MaxAge = 2630000
CachePublic = false
)