Explorar el Código

Using redis now.

The cache now honors the 5 minutes.
We might want to make that longer (15 minutes).
root hace 4 años
padre
commit
c29b842119
Se han modificado 2 ficheros con 3 adiciones y 1 borrados
  1. 1 0
      image/req.txt
  2. 2 1
      messages.py

+ 1 - 0
image/req.txt

@@ -20,3 +20,4 @@ six==1.15.0
 toml==0.10.1
 typed-ast==1.4.1
 Werkzeug==1.0.1
+redis

+ 2 - 1
messages.py

@@ -19,7 +19,8 @@ def format_datetime(value):
 
 
 # Check Configuring Flask-Caching section for more details
-cache = Cache(app, config={"CACHE_TYPE": "filesystem", "CACHE_DIR": "cache"})
+# cache = Cache(app, config={"CACHE_TYPE": "filesystem", "CACHE_DIR": "cache"})
+cache = Cache(app, config={"CACHE_TYPE": "redis", "CACHE_REDIS_HOST": "redis"})
 
 import jammin