increase cache ttl to 60 seconds

This commit is contained in:
j 2016-01-04 15:53:54 +05:30
commit 3132cc02fe
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@ import time
class Cache(dict):
def __init__(self, ttl=10):
def __init__(self, ttl=60):
self._ttl = ttl
self._added = {}