Switch Quay to using an in-container memcached for data model caching
This commit is contained in:
parent
5cecc54bd5
commit
ab0172d2fd
14 changed files with 246 additions and 65 deletions
|
@ -513,3 +513,9 @@ class DefaultConfig(ImmutableConfig):
|
|||
# For Billing Support Only: The number of allowed builds on a namespace that has been billed
|
||||
# successfully.
|
||||
BILLED_NAMESPACE_MAXIMUM_BUILD_COUNT = None
|
||||
|
||||
# Configuration for the data model cache.
|
||||
DATA_MODEL_CACHE_CONFIG = {
|
||||
'engine': 'memcached',
|
||||
'endpoint': ('127.0.0.1', 18080),
|
||||
}
|
||||
|
|
Reference in a new issue