We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8113439 commit bbed096Copy full SHA for bbed096
Gemfile
@@ -9,3 +9,4 @@ gem 'rake'
9
gem 'rubocop', '~> 1.25.1'
10
gem 'mocha'
11
gem 'redis-client', github: 'redis-rb/redis-client' # RESP2 supportnot yet released
12
+gem 'hiredis-client', github: 'redis-rb/redis-client' # RESP2 supportnot yet released
test/helper.rb
@@ -17,6 +17,10 @@
17
require_relative "support/redis_mock"
18
require_relative 'support/cluster/orchestrator'
19
20
+if ENV["DRIVER"] == "hiredis"
21
+ require "hiredis-client"
22
+end
23
+
24
PORT = 6381
25
DB = 15
26
TIMEOUT = Float(ENV['TIMEOUT'] || 1.0)
0 commit comments