Skip to content

Remove `RedisDriver`

Nathan Harris requested to merge remove-driver into master

Motivation:

RedisDriver has one of the weakest use cases for existence, as its entire purpose can be solved with a static function on RedisConnection.

Result:

RedisDriver no longer is a thing, and a simpler process of creating a RedisConnection is available through the static method connect(to:with:on:logger:).

Also, the ClientBootstrap.makeForRedis(using:) method has been cleaned up and renamed to ClientBootstrap.makeRedisDefault(using:).

Merge request reports