class SimpleEventSourcing::Events::EventStore::RedisClient::Configuration

Attributes

host[RW]
mock[RW]
port[RW]

Public Class Methods

new() click to toggle source
# File lib/simple_event_sourcing/events/event_store/redis/redis_client.rb, line 27
def initialize
  @host ='localhost'
  @port = 6379
  @mock = false
end