
This introduces a few new redis_* options to simplify the settings required to use the redis backend. The main aim of this change is to replace the requirement to inject url by backend_argument. [cache] backend=dogpile.cache.redis redis_server=127.0.0.1:6379 redis_username=default redis_password=a_big_secret redis_socket_timeout=1.0 Closes-Bug: #2052351 Change-Id: Id72878f9cddaa99146eab5fb4ee76c8e6a633809
17 lines
492 B
YAML
17 lines
492 B
YAML
---
|
|
features:
|
|
- |
|
|
The following new options are added. These options are used to customize
|
|
connections in the ``dogpile.cache.redis`` backend.
|
|
|
|
- ``redis_server``
|
|
- ``redis_username``
|
|
- ``redis_password``
|
|
- ``redis_socket_timeout``
|
|
|
|
upgrade:
|
|
- |
|
|
The ``[cache] memcache_socket_timeout`` option no longer takes affect in
|
|
when the ``dogpile.cache.redis`` backend, which is the documented behavior.
|
|
Use the ``[cache] redis_socket_timeout`` option instead.
|