I am using django-redis in django and want to turn off compressor. there are several options to set various types of compressors like zlib, lzma, etc. but not no compressor.
I am using django-redis in django and want to turn off compressor. there are several options to set various types of compressors like zlib, lzma, etc. but not no compressor.
2
Answers
I found the answer and my mistake was it is not about compressor but serializer. So adding "SERIALIZER": "django_redis.serializers.json.JSONSerializer", to "OPTIONS" fixes the problem.
From django-redis readme