@@ -175,3 +175,13 @@ REST_FRAMEWORK = {
JWT_AUTH = {
'JWT_EXPIRATION_DELTA': datetime.timedelta(days=1),
}
+
+CACHES = {
+ 'default': {
+ 'BACKEND': 'uwsgicache.UWSGICache',
+ # and optionally, if you use a different cache name
+ 'LOCATION': 'foobar'
+ }
+}