diff options
Diffstat (limited to 'system/db/config.go')
-rw-r--r-- | system/db/config.go | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/system/db/config.go b/system/db/config.go index 2706e97..6a409c2 100644 --- a/system/db/config.go +++ b/system/db/config.go @@ -13,6 +13,11 @@ import ( "github.com/gorilla/schema" ) +const ( + // DefaultMaxAge provides a 2592000 second (30-day) cache max-age setting + DefaultMaxAge = int64(60 * 60 * 24 * 30) +) + var configCache map[string]interface{} func init() { |