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.



369
370
371
372
373
374
# File 'lib/groonga-query-log/server-verifier.rb', line 369

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.



365
366
367
# File 'lib/groonga-query-log/server-verifier.rb', line 365

def host
  @host
end

#portObject

Returns the value of attribute port.



366
367
368
# File 'lib/groonga-query-log/server-verifier.rb', line 366

def port
  @port
end

#protocolObject

Returns the value of attribute protocol.



367
368
369
# File 'lib/groonga-query-log/server-verifier.rb', line 367

def protocol
  @protocol
end

#read_timeoutObject

Returns the value of attribute read_timeout.



368
369
370
# File 'lib/groonga-query-log/server-verifier.rb', line 368

def read_timeout
  @read_timeout
end

Instance Method Details

#create_client(&block) ⇒ Object



376
377
378
379
380
381
382
# File 'lib/groonga-query-log/server-verifier.rb', line 376

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