Flask-And-Redis

Simple as dead support of Redis database for Flask applications

BSD-3-CLAUSE License

Downloads
6K
Stars
84
Committers
7

Bot releases are hidden (Show)

Flask-And-Redis - 1.0.0 Release Latest Release

Published by playpauseandstop over 5 years ago

  • Drop Python 2.6 & 3.3 support, ensure Python 3.6+ support. Kudos to jezdez for pull request & implementation
  • Support subclasses of the Redis client class. Again kudos to jezdez for pull request & implementation
  • Use inspect.getfullargspec() if available. Kudos to vibiu for pull request & implementation
  • Use redis.Redis as default connection class, when using redis-py >= 3
Flask-And-Redis - 0.7 Release

Published by playpauseandstop over 5 years ago

  • Improve multiple app support. Kudos to timothyqiu for pull request & implementation
  • Simplify running tests for test application
Flask-And-Redis - 0.6 Release

Published by playpauseandstop over 5 years ago

  • Python 3 support.
  • Move documentation to Read the Docs.
  • Refactor example test project to Comments app which shows how to use two Redis databases simultaneously.
Flask-And-Redis - 0.5 Release

Published by playpauseandstop over 5 years ago

  • Use redis.StrictRedis as connection class by default.
  • Understands unix socket path in REDIS_HOST.
  • Updates to README.
Flask-And-Redis - 0.4 Release

Published by playpauseandstop over 5 years ago

  • Big refactor for Redis class. Do not inherit redis.Redis class, store active redis connection in Redis.connection attribute and app.extensions['redis'] dict.
  • Add support of config_prefix keyword argument for Redis or Redis.init_app methods.
  • Support multiple redis connections in test application.
Flask-And-Redis - 0.3.3 Release

Published by playpauseandstop over 5 years ago

  • Fix problem while parsing REDIS_URL value, strip unnecessary slashes from database path (like redis://localhost:6379/12/).
Flask-And-Redis - 0.3.2 Release

Published by playpauseandstop over 5 years ago

  • Added redis as install requirement in setup.py.
Flask-And-Redis - 0.3.1 Release

Published by playpauseandstop over 5 years ago

  • Move from flask_redis package to python module.
  • Little improvements for storing _flask_app attribute to Redis instance.
Flask-And-Redis - 0.3 Release

Published by playpauseandstop over 5 years ago

  • Implement Redis.init_app method.