Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow Redis Connection to be Injected #189

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions lib/classifier-reborn/backends/bayes_redis_backend.rb
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,16 @@
module ClassifierReborn
# This class provides Redis as the storage backend for the classifier data structures
class BayesRedisBackend
# The class can be created with the same arguments that the redis gem accepts
# The class can be given an existing redis connection, or it can create
# a new connection for you with the same arguments that the
# {redis gem}[https://github.com/redis/redis-rb] accepts
# E.g.,
# b = ClassifierReborn::BayesRedisBackend.new
# b = ClassifierReborn::BayesRedisBackend.new host: "10.0.1.1", port: 6380, db: 2
# b = ClassifierReborn::BayesRedisBackend.new url: "redis://:[email protected]:6380/2"
#
# Options available are:
# redis_conn: an existing redis connection
# url: lambda { ENV["REDIS_URL"] }
# scheme: "redis"
# host: "127.0.0.1"
Expand All @@ -33,7 +36,7 @@ def initialize(options = {})
raise NoRedisError
end

@redis = Redis.new(options)
@redis = options.fetch(:redis_conn, Redis.new(options))
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor point but my preference for the argument name would just be redis.

Suggested change
@redis = options.fetch(:redis_conn, Redis.new(options))
@redis = options.fetch(:redis, Redis.new(options))

@redis.setnx(:total_words, 0)
@redis.setnx(:total_trainings, 0)
end
Expand Down
19 changes: 19 additions & 0 deletions test/backends/backend_redis_injected_test.rb
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
require File.dirname(__FILE__) + '/../test_helper'
require 'redis'
require_relative './backend_common_tests'

class BackendRedisInjectedTest < Minitest::Test
include BackendCommonTests

def setup
redis = Redis.new
@backend = ClassifierReborn::BayesRedisBackend.new(redis_conn: redis)
redis.config(:set, 'save', '')
rescue Redis::CannotConnectError => e
skip(e)
end

def teardown
@backend.reset if defined? @backend
end
end