瀏覽代碼

Increase cache times

Zed 7 年之前
父節點
當前提交
4bf38f71f3
共有 2 個文件被更改,包括 2 次插入2 次删除
  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