Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Arch Linux
infrastructure
Commits
9a9113d1
Verified
Commit
9a9113d1
authored
Oct 02, 2021
by
Jelle van der Waa
🚧
Browse files
Fix pymemcache client errors with django
parent
0bd66f18
Pipeline
#11542
passed with stage
in 34 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
roles/archweb/templates/local_settings.py.j2
View file @
9a9113d1
...
...
@@ -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,
}
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment