CACHES = {
'default': {
'BACKEND': 'django_redis.cache.RedisCache',
'LOCATION': env('CACHE_URL'),
'OPTIONS': {
'COMPRESSOR': "django_redis.compressors.zlib.ZlibCompressor",
'COMPRESS_MIN_LEN': 1024, # Compress only values larger than 1KB
'CLIENT_CLASS': 'django_redis.client.DefaultClient',
}
},
}
DATABASES = {
"default": env.db("DATABASE_URL")
}