Class: Droonga::GroongaAdapter
- Inherits:
-
AdapterPlugin
- Object
- Plugin
- AdapterPlugin
- Droonga::GroongaAdapter
- Defined in:
- lib/droonga/plugin/adapter/groonga.rb,
lib/droonga/plugin/adapter/groonga/select.rb
Defined Under Namespace
Classes: Select
Instance Method Summary collapse
Methods inherited from AdapterPlugin
#add_route, #emit, #initialize, #post, #process
Methods included from PluginRegisterable
#command, extended, #inherited, #method_name, #processable?, #repository
Methods inherited from Plugin
#initialize, #process, #processable?, #shutdown, #start
Constructor Details
This class inherits a constructor from Droonga::AdapterPlugin
Instance Method Details
#select(input_message) ⇒ Object
23 24 25 26 27 28 29 30 |
# File 'lib/droonga/plugin/adapter/groonga.rb', line 23 def select() command = Select.new select_request = .body search_request = command.convert_request(select_request) .add_route("select_response") .command = "search" .body = search_request end |