mirror of
https://github.com/ansible/awx.git
synced 2026-01-12 02:19:58 -03:30
Apply ephemeral cache for some memoize tasks recently merged
This commit is contained in:
parent
64415872a0
commit
87b58e6bc2
@ -108,4 +108,7 @@ CACHES = {
|
||||
'LOCATION': '{}:{}'.format(os.getenv("MEMCACHED_HOST", None),
|
||||
os.getenv("MEMCACHED_PORT", "11211"))
|
||||
},
|
||||
'ephemeral': {
|
||||
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
||||
},
|
||||
}
|
||||
|
||||
@ -89,4 +89,7 @@ data:
|
||||
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
|
||||
'LOCATION': '{}:{}'.format("localhost", "11211")
|
||||
},
|
||||
'ephemeral': {
|
||||
'BACKEND': 'django.core.cache.backends.locmem.LocMemCache',
|
||||
},
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user