Class: Droonga::GroongaHandler::ColumnCreate
- Defined in:
- lib/droonga/plugin/handler/groonga/column_create.rb
Instance Method Summary collapse
Methods inherited from Command
Constructor Details
This class inherits a constructor from Droonga::GroongaHandler::Command
Instance Method Details
#process_request(request) ⇒ Object
24 25 26 27 28 29 30 31 32 33 |
# File 'lib/droonga/plugin/handler/groonga/column_create.rb', line 24 def process_request(request) command_class = Groonga::Command.find("column_create") @command = command_class.new("column_create", request) if @command.column_index? define_index else define_column end end |