class EventMachine::Protocols::Couchbase::Configuration

Attributes

bucket_name[R]
bucket_type[R]
hash_algorithm[R]
node_locator[R]
nodes[R]
num_replicas[R]
sasl_password[R]
vbucket_map[R]
vbucket_map_forward[R]

Public Class Methods

new(attributes = {}) click to toggle source
# File lib/em-couchbase/configuration.rb, line 34
def initialize(attributes = {})
  attributes.each do |k, v|
    if respond_to?(k)
      instance_variable_set("@#{k}", v)
    end
  end
end