You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If i set MEMCACHED_ENABLED=True and MEMCACHED_BACKEND=django.core.cache.backends.memcached.MemcachedCache the cache should work
Actual Behavior
Django raise an error:
Could not find backend 'django.core.cache.backends.memcached.MemcachedCache': Module "django.core.cache.backends.memcached" does not define a "MemcachedCache" attribute/class
From Django 4.1, MemcachedCache support has been dropped, see releases notes .
We should change the cache system and use PyLibMCCache for example
Steps to Reproduce the Problem
on master set set MEMCACHED_ENABLED=True
Run django
Specifications
GeoNode version: master ONLY
Installation type (vanilla, geonode-project): master ONLY
Keep in mind that at the moment the usage of a real Django cache is not very well tested. There were problems reported with the REST API.
The only real cache backed by Memcached that we're actively using is the one for the transaction locks., and it uses pylibmc
Expected Behavior
If i set
MEMCACHED_ENABLED=True
andMEMCACHED_BACKEND=django.core.cache.backends.memcached.MemcachedCache
the cache should workActual Behavior
Django raise an error:
From Django 4.1, MemcachedCache support has been dropped, see releases notes .
We should change the cache system and use PyLibMCCache for example
Steps to Reproduce the Problem
MEMCACHED_ENABLED=True
Specifications
The text was updated successfully, but these errors were encountered: