Commit cefa2a0f by Edward Zarecor

Merge pull request #2110 from edx/e0d/separate-cache

E0d/separate cache
parents 222c6b73 ee47f59e
......@@ -84,6 +84,7 @@ EDXAPP_EMAIL_HOST_PASSWORD: ''
EDXAPP_LOG_LEVEL: 'INFO'
EDXAPP_MEMCACHE: [ 'localhost:11211' ]
EDXAPP_CACHE_COURSE_STRUCTURE_MEMCACHE: [ 'localhost:11211' ]
EDXAPP_COMMENTS_SERVICE_URL: 'http://localhost:18080'
EDXAPP_COMMENTS_SERVICE_KEY: 'password'
......@@ -742,6 +743,10 @@ generic_env_config: &edxapp_generic_env
<<: *default_generic_cache
KEY_PREFIX: 'celery'
TIMEOUT: "7200"
course_structure_cache:
<<: *default_generic_cache
KEY_PREFIX: 'course_structure'
LOCATION: "{{ EDXAPP_CACHE_COURSE_STRUCTURE_MEMCACHE }}"
CELERY_BROKER_TRANSPORT: 'amqp'
CELERY_BROKER_HOSTNAME: "{{ EDXAPP_RABBIT_HOSTNAME }}"
COMMENTS_SERVICE_URL: "{{ EDXAPP_COMMENTS_SERVICE_URL }}"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment