Commit b295c22 1 parent 3c00b9a commit b295c22 Copy full SHA for b295c22
File tree 8 files changed +6
-8
lines changed
8 files changed +6
-8
lines changed Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ SECRET_KEY='myv-y4#7j-d*p-__@j#*3z@!y24fz8%^z2v6atuy4bo9vqr1_a'
166
166
CACHE_BUSTING_STATIC_ENABLED = False
167
167
168
168
MEMCACHED_ENABLED = False
169
- MEMCACHED_BACKEND = django.core.cache.backends.memcached.MemcachedCache
169
+ MEMCACHED_BACKEND = django.core.cache.backends.memcached.PyLibMCCache
170
170
MEMCACHED_LOCATION = 127.0.0.1:11211
171
171
MEMCACHED_LOCK_EXPIRE = 3600
172
172
MEMCACHED_LOCK_TIMEOUT = 10
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ GEOIP_PATH=/mnt/volumes/statics/geoip.db
173
173
CACHE_BUSTING_STATIC_ENABLED = False
174
174
175
175
MEMCACHED_ENABLED = False
176
- MEMCACHED_BACKEND = django.core.cache.backends.memcached.MemcachedCache
176
+ MEMCACHED_BACKEND = django.core.cache.backends.memcached.PyLibMCCache
177
177
MEMCACHED_LOCATION = memcached:11211
178
178
MEMCACHED_LOCK_EXPIRE = 3600
179
179
MEMCACHED_LOCK_TIMEOUT = 10
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ SECRET_KEY='myv-y4#7j-d*p-__@j#*3z@!y24fz8%^z2v6atuy4bo9vqr1_a'
173
173
CACHE_BUSTING_STATIC_ENABLED=False
174
174
175
175
MEMCACHED_ENABLED=False
176
- MEMCACHED_BACKEND=django.core.cache.backends.memcached.MemcachedCache
176
+ MEMCACHED_BACKEND=django.core.cache.backends.memcached.PyLibMCCache
177
177
MEMCACHED_LOCATION=127.0.0.1:11211
178
178
MEMCACHED_LOCK_EXPIRE=3600
179
179
MEMCACHED_LOCK_TIMEOUT=10
Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ SECRET_KEY='myv-y4#7j-d*p-__@j#*3z@!y24fz8%^z2v6atuy4bo9vqr1_a'
173
173
CACHE_BUSTING_STATIC_ENABLED=False
174
174
175
175
MEMCACHED_ENABLED=False
176
- MEMCACHED_BACKEND=django.core.cache.backends.memcached.MemcachedCache
176
+ MEMCACHED_BACKEND=django.core.cache.backends.memcached.PyLibMCCache
177
177
MEMCACHED_LOCATION=127.0.0.1:11211
178
178
MEMCACHED_LOCK_EXPIRE=3600
179
179
MEMCACHED_LOCK_TIMEOUT=10
Original file line number Diff line number Diff line change @@ -182,7 +182,7 @@ GEOIP_PATH=/mnt/volumes/statics/geoip.db
182
182
CACHE_BUSTING_STATIC_ENABLED=False
183
183
184
184
MEMCACHED_ENABLED=False
185
- MEMCACHED_BACKEND=django.core.cache.backends.memcached.MemcachedCache
185
+ MEMCACHED_BACKEND=django.core.cache.backends.memcached.PyLibMCCache
186
186
MEMCACHED_LOCATION=memcached:11211
187
187
MEMCACHED_LOCK_EXPIRE=3600
188
188
MEMCACHED_LOCK_TIMEOUT=10
Original file line number Diff line number Diff line change 371
371
COMPRESS_STATIC_FILES = ast .literal_eval (os .getenv ("COMPRESS_STATIC_FILES" , "False" ))
372
372
373
373
MEMCACHED_ENABLED = ast .literal_eval (os .getenv ("MEMCACHED_ENABLED" , "False" ))
374
- MEMCACHED_BACKEND = os .getenv ("MEMCACHED_BACKEND" , "django.core.cache.backends.memcached.PyMemcacheCache " )
374
+ MEMCACHED_BACKEND = os .getenv ("MEMCACHED_BACKEND" , "django.core.cache.backends.memcached.PyLibMCCache " )
375
375
MEMCACHED_LOCATION = os .getenv ("MEMCACHED_LOCATION" , "127.0.0.1:11211" )
376
376
MEMCACHED_LOCK_EXPIRE = int (os .getenv ("MEMCACHED_LOCK_EXPIRE" , 3600 ))
377
377
MEMCACHED_LOCK_TIMEOUT = int (os .getenv ("MEMCACHED_LOCK_TIMEOUT" , 10 ))
Original file line number Diff line number Diff line change @@ -109,7 +109,6 @@ google-cloud-core==2.4.1
109
109
boto3 == 1.34.74
110
110
111
111
# Django Caches
112
- python-memcached <= 1.62
113
112
whitenoise == 6.6.0
114
113
Brotli == 1.1.0
115
114
Original file line number Diff line number Diff line change @@ -134,7 +134,6 @@ install_requires =
134
134
boto3 ==1.34.74
135
135
136
136
# Django Caches
137
- python-memcached<=1.62
138
137
whitenoise ==6.6.0
139
138
Brotli ==1.1.0
140
139
You can’t perform that action at this time.
0 commit comments