We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I use the database backend mode with Memcached. But the number of requests to display the settings is too many.
context_processors Setting: TEMPLATES = [ { 'OPTIONS': { 'context_processors': [ 'constance.context_processors.config', ], }, }, ]
context_processors
TEMPLATES = [ { 'OPTIONS': { 'context_processors': [ 'constance.context_processors.config', ], }, }, ]
CONSTANCE Settings `CONSTANCE_BACKEND = 'constance.backends.database.DatabaseBackend'
CONSTANCE_IGNORE_ADMIN_VERSION_CHECK = True
CACHES = { 'default': { 'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache', 'LOCATION': '127.0.0.1:11211', } } CONSTANCE_DATABASE_CACHE_BACKEND = 'default'`
The text was updated successfully, but these errors were encountered:
Is this problem still relevant today?
Sorry, something went wrong.
That doesn't seem to be the case. I'm closing this.
No branches or pull requests
Describe the problem
I use the database backend mode with Memcached. But the number of requests to display the settings is too many.
Steps to reproduce
context_processors
Setting:TEMPLATES = [ { 'OPTIONS': { 'context_processors': [ 'constance.context_processors.config', ], }, }, ]
CONSTANCE Settings
`CONSTANCE_BACKEND = 'constance.backends.database.DatabaseBackend'
CONSTANCE_IGNORE_ADMIN_VERSION_CHECK = True
CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'LOCATION': '127.0.0.1:11211',
}
}
CONSTANCE_DATABASE_CACHE_BACKEND = 'default'`
System configuration
The text was updated successfully, but these errors were encountered: