class Redstruct::Configuration

Simple class holding the Redstruct configuration

Attributes

default_connection[RW]

@return [ConnectionPool, Redis] the default redis-rb connection, or a pool of said connections

default_namespace[RW]

@return [String] Default namespace for factories

Public Class Methods

new() click to toggle source
# File lib/redstruct/configuration.rb, line 12
def initialize
  @default_connection = nil
  @default_namespace = nil
end