Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
build: migrate devstack cache backend to pymemcache (#556)
Browse files Browse the repository at this point in the history
  • Loading branch information
UsamaSadiq committed Sep 12, 2023
1 parent fc510c3 commit c3229ee
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion registrar/settings/devstack.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,9 @@

CACHES = {
'default': {
'BACKEND': 'django.core.cache.backends.memcached.MemcachedCache',
'BACKEND': 'django.core.cache.backends.memcached.PyMemcacheCache',
'LOCATION': os.environ.get('CACHE_LOCATION', 'memcached:11211'),
"OPTIONS": {"no_delay": True, "ignore_exec": True, "use_pooling": True},
}
}

Expand Down

0 comments on commit c3229ee

Please sign in to comment.