Skip to content

v1.5.3

Latest
Compare
Choose a tag to compare
@JoeCap08055 JoeCap08055 released this 04 Apr 17:49
· 2 commits to main since this release
26987a1

Description

BREAKING CONFIG CHANGE

v1.5.2 introduced a new config, REDIS_OPTIONS, that could be used alongside REDIS_URL. To eliminate confusion, now REDIS_OPTIONS and REDIS_URL are mutually exclusive; that is, both are capable of specifying additional Redis options, but only one or the other may be used (and at least one must be used).

  • REDIS_URL may specify additional options as URL query parameters, ie: redis://localhost:6379?commandTimeout=10000
  • REDIS_OPTIONS takes the form of a JSON string: '{"host": "localhost", "port": 6379, "commandTimeout": 10000}'

SSL/TLS Notes for Redis

To enable SSL/TLS for Redis connections:

  • WIth REDIS_URL, use rediss:// as the protocol
  • WIth REDIS_OPTIONS, specify "tls": true as one of the properties

What's Changed

Full Changelog: v1.5.2...v1.5.3