Sha256: ee5737472087e3f7c9efd392cd2d4227d1e2e40112e126ff564c6812b965e7b4

Contents?: true

Size: 559 Bytes

Versions: 11

Compression:

Stored size: 559 Bytes

Contents

# frozen_string_literal: true

require_relative "connection/registry"

# If a connection driver was required before this file, the array
# Redis::Connection.drivers will contain one or more classes. The last driver
# in this array will be used as default driver. If this array is empty, we load
# the plain Ruby driver as our default. Another driver can be required at a
# later point in time, causing it to be the last element of the #drivers array
# and therefore be chosen by default.
require_relative "connection/ruby" if Redis::Connection.drivers.empty?

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
redis-4.5.1 lib/redis/connection.rb
redis-4.5.0 lib/redis/connection.rb
redis-4.4.0 lib/redis/connection.rb
redis-4.3.1 lib/redis/connection.rb
redis-4.3.0 lib/redis/connection.rb
redis-4.2.5 lib/redis/connection.rb
redis-4.2.4 lib/redis/connection.rb
redis-4.2.3 lib/redis/connection.rb
redis-4.2.2 lib/redis/connection.rb
redis-4.2.1 lib/redis/connection.rb
redis-4.2.0 lib/redis/connection.rb