Increase cache times
This commit is contained in:
parent
06a54a5c32
commit
4bf38f71f3
2 changed files with 2 additions and 2 deletions
|
@ -21,7 +21,7 @@ const
|
|||
var
|
||||
token = ""
|
||||
tokenUpdated: Time
|
||||
tokenLifetime = initDuration(minutes=10)
|
||||
tokenLifetime = initDuration(hours=2)
|
||||
|
||||
template newClient() {.dirty.} =
|
||||
var client = newAsyncHttpClient()
|
||||
|
|
|
@ -7,7 +7,7 @@ withDb:
|
|||
except DbError:
|
||||
discard
|
||||
|
||||
var profileCacheTime = initDuration(seconds=60)
|
||||
var profileCacheTime = initDuration(minutes=10)
|
||||
|
||||
proc outdated(profile: Profile): bool =
|
||||
getTime() - profile.updated > profileCacheTime
|
||||
|
|
Loading…
Reference in a new issue