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.



460
461
462
463
464
465
# File 'lib/groonga-query-log/server-verifier.rb', line 460

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.



456
457
458
# File 'lib/groonga-query-log/server-verifier.rb', line 456

def host
  @host
end

#portObject

Returns the value of attribute port.



457
458
459
# File 'lib/groonga-query-log/server-verifier.rb', line 457

def port
  @port
end

#protocolObject

Returns the value of attribute protocol.



458
459
460
# File 'lib/groonga-query-log/server-verifier.rb', line 458

def protocol
  @protocol
end

#read_timeoutObject

Returns the value of attribute read_timeout.



459
460
461
# File 'lib/groonga-query-log/server-verifier.rb', line 459

def read_timeout
  @read_timeout
end

Instance Method Details

#create_client(&block) ⇒ Object



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

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