This release adds TLS support to TinyRedis thanks to an implementation by @FeepingCreature . TLS was added in Redis 6.0.
Use the new Redis
ctor to connect via TLS
this(const(ubyte)[] certificateData, const(ubyte)[] privateKeyData, const(ubyte)[] caData,
string host = "127.0.0.1", ushort port = 6379)
What's Changed
- Fix issue #45: Implement Redis TLS support (except for subscriptions). by @FeepingCreature in #46
Full Changelog: v2.3.2...v2.4