Within the settings.py
file, before the cache settings were encountered, I instantiated a local client which made use of the Django cache API and thus set the cache backend to the default django.core.cache.backends.locmem.LocMemCache
.
Moving the cache settings up in the file before the instantiation of the local client allowed the correct django_bmemcached.memcached.BMemcached
backend to be set as specified.