Skip to content
Snippets Groups Projects
Commit eadec073 authored by Jelle van der Waa's avatar Jelle van der Waa :construction: Committed by Kristian Klausen
Browse files

Fix pymemcache client errors with django

parent 3372188c
No related branches found
No related tags found
No related merge requests found
This commit is part of merge request !536. Comments created here will be created in the context of that merge request.
......@@ -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