Class: GroongaQueryLog::ServerVerifier::GroongaOptions

Inherits:
Object
  • Object
show all
Defined in:
lib/groonga-query-log/server-verifier.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeGroongaOptions

Returns a new instance of GroongaOptions.



470
471
472
473
474
475
# File 'lib/groonga-query-log/server-verifier.rb', line 470

def initialize
  @host         = "127.0.0.1"
  @port         = 10041
  @protocol     = :gqtp
  @read_timeout = Groonga::Client::Default::READ_TIMEOUT
end

Instance Attribute Details

#hostObject

Returns the value of attribute host.



466
467
468
# File 'lib/groonga-query-log/server-verifier.rb', line 466

def host
  @host
end

#portObject

Returns the value of attribute port.



467
468
469
# File 'lib/groonga-query-log/server-verifier.rb', line 467

def port
  @port
end

#protocolObject

Returns the value of attribute protocol.



468
469
470
# File 'lib/groonga-query-log/server-verifier.rb', line 468

def protocol
  @protocol
end

#read_timeoutObject

Returns the value of attribute read_timeout.



469
470
471
# File 'lib/groonga-query-log/server-verifier.rb', line 469

def read_timeout
  @read_timeout
end

Instance Method Details

#create_client(&block) ⇒ Object



477
478
479
480
481
482
483
# File 'lib/groonga-query-log/server-verifier.rb', line 477

def create_client(&block)
  Groonga::Client.open(:host         => @host,
                       :port         => @port,
                       :protocol     => @protocol,
                       :read_timeout => @read_timeout,
                       &block)
end