diff --git a/app/main.py b/app/main.py index c984e0d..f4d7a44 100755 --- a/app/main.py +++ b/app/main.py @@ -2755,7 +2755,7 @@ async def get_options_stats_ticker(data:TickerData, api_key: str = Security(get_ data = orjson.dumps(res) compressed_data = gzip.compress(data) redis_client.set(cache_key, compressed_data) - redis_client.expire(cache_key, 60*60) + redis_client.expire(cache_key, 60*5) return StreamingResponse( io.BytesIO(compressed_data), media_type="application/json",