Skip to content
Snippets Groups Projects
Verified Commit 9a9113d1 authored by Jelle van der Waa's avatar Jelle van der Waa :construction:
Browse files

Fix pymemcache client errors with django

parent 0bd66f18
No related branches found
No related tags found
No related merge requests found
Pipeline #11542 passed
......@@ -40,6 +40,13 @@ CACHES = {
'default': {
'BACKEND' : 'django.core.cache.backends.memcached.PyMemcacheCache',
'LOCATION': 'unix:/run/memcached/archweb.sock',
'OPTIONS': {
'no_delay': True,
'max_pool_size': 4,
'use_pooling': True,
'ignore_exc': True,
}
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment