-
Notifications
You must be signed in to change notification settings - Fork 13.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add redis cache hint to docs #861
Conversation
Strangely enough it's not documented on flask-cache, cannot hurt to have it there though :) |
I think it is important, because flask-cache say redis is builtin, but if fact you need install python-redis, like Memcached, many people will feel adoubt (ex. me) |
Thanks for the clarification. We use memcache but the 1M limits and workarounds are a bit annoying... Maybe we should go with Redis. |
Note that in order to use a Redis cache with Superset you need to |
@rhunwicks feel free to open a PR |
* test: use stable random for stories * Seed with superset-ui * Add tests for random
* test: use stable random for stories * Seed with superset-ui * Add tests for random
* test: use stable random for stories * Seed with superset-ui * Add tests for random
* test: use stable random for stories * Seed with superset-ui * Add tests for random
If use Redis as cache server, Flask-Cache will say driver not found, user need manual install python-redis library, so I add hint text into docs
Ref.
Flask-cache redis cache failed