Class: GroongaQueryLog::ServerVerifier::GroongaOptions
- Inherits:
-
Object
- Object
- GroongaQueryLog::ServerVerifier::GroongaOptions
- Defined in:
- lib/groonga-query-log/server-verifier.rb
Instance Attribute Summary collapse
-
#host ⇒ Object
Returns the value of attribute host.
-
#port ⇒ Object
Returns the value of attribute port.
-
#protocol ⇒ Object
Returns the value of attribute protocol.
-
#read_timeout ⇒ Object
Returns the value of attribute read_timeout.
Instance Method Summary collapse
- #create_client(&block) ⇒ Object
-
#initialize ⇒ GroongaOptions
constructor
A new instance of GroongaOptions.
Constructor Details
#initialize ⇒ GroongaOptions
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
#host ⇒ Object
Returns the value of attribute host.
456 457 458 |
# File 'lib/groonga-query-log/server-verifier.rb', line 456 def host @host end |
#port ⇒ Object
Returns the value of attribute port.
457 458 459 |
# File 'lib/groonga-query-log/server-verifier.rb', line 457 def port @port end |
#protocol ⇒ Object
Returns the value of attribute protocol.
458 459 460 |
# File 'lib/groonga-query-log/server-verifier.rb', line 458 def protocol @protocol end |
#read_timeout ⇒ Object
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 |