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.
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
#host ⇒ Object
Returns the value of attribute host.
466 467 468 |
# File 'lib/groonga-query-log/server-verifier.rb', line 466 def host @host end |
#port ⇒ Object
Returns the value of attribute port.
467 468 469 |
# File 'lib/groonga-query-log/server-verifier.rb', line 467 def port @port end |
#protocol ⇒ Object
Returns the value of attribute protocol.
468 469 470 |
# File 'lib/groonga-query-log/server-verifier.rb', line 468 def protocol @protocol end |
#read_timeout ⇒ Object
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 |