Explorar el Código

Increase cache times

Zed hace 7 años
padre
commit
4bf38f71f3
Se han modificado 2 ficheros con 2 adiciones y 2 borrados
  1. 1 1
      src/api.nim
  2. 1 1
      src/cache.nim

+ 1 - 1
src/api.nim

@@ -21,7 +21,7 @@ const
 var
   token = ""
   tokenUpdated: Time
-  tokenLifetime = initDuration(minutes=10)
+  tokenLifetime = initDuration(hours=2)
 
 template newClient() {.dirty.} =
   var client = newAsyncHttpClient()

+ 1 - 1
src/cache.nim

@@ -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