class Groonga::Command::ConfigSet

A command class that represents `config_set` command.

@since 1.1.5

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/config-set.rb, line 26
def command_name
  "config_set"
end
parameter_names() click to toggle source
# File lib/groonga/command/config-set.rb, line 30
def parameter_names
  [
    :key,
    :value,
  ]
end

Public Instance Methods

key() click to toggle source

@return [String] `key` parameter value.

@since 1.1.4

# File lib/groonga/command/config-set.rb, line 43
def key
  self[:key]
end
value() click to toggle source

@return [String] `value` parameter value.

@since 1.1.4

# File lib/groonga/command/config-set.rb, line 50
def value
  self[:value]
end