Ragib01 opened a new issue, #20896: URL: https://github.com/apache/superset/issues/20896
#### How to reproduce the bug ``` git clone https://github.com/apache/superset.git cd superset docker-compose -f docker-compose-non-dev.yml pull ``` **Then I configure to use Redis for caching** In _superset/config.py_ ``` import redis ... CACHE_CONFIG = { 'CACHE_TYPE':'redis', # Use Redis 'CACHE_REDIS_HOST':'localhost', # Configure domain name 'CACHE_REDIS_PORT': 6379, # Configure port number 'CACHE_REDIS_URL':'redis://localhost:6379' # Configure URL } ``` Then ``` docker-compose up docker-compose -f docker-compose-non-dev.yml up ``` 1. Go to _SQL Editor_ 2. Run some query 3. Create charts 4. Run ``` docker exec -it superset_cache redis-cli ``` 5. No key value pairs with redis create ### Expected results ``` 127.0.0.1:6379> KEYS '*' 1) "_kombu.binding.celeryev" 2) "_kombu.binding.celery" 3) "_kombu.binding.celery.pidbox" 4) "flask_cache_bf................" 5) "flask_cache_6c................" ``` ### Actual results ``` 127.0.0.1:6379> KEYS '*' 1) "_kombu.binding.celeryev" 2) "_kombu.binding.celery" 3) "_kombu.binding.celery.pidbox" ``` ### Environment - ubuntu version: 20.04.4 LTS -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
