class Groonga::Command::LogicalCount

A command class that represents `logical_count` command.

@since 1.1.1

Public Class Methods

command_name() click to toggle source
# File lib/groonga/command/logical-count.rb, line 27
def command_name
  "logical_count"
end
parameter_names() click to toggle source
# File lib/groonga/command/logical-count.rb, line 31
def parameter_names
  [
    :logical_table,
    :shard_key,
    :min,
    :min_border,
    :max,
    :max_border,
    :filter,
  ]
end

Public Instance Methods

filter() click to toggle source

@return [String] `filter` parameter value.

@since 1.1.1

# File lib/groonga/command/logical-count.rb, line 91
def filter
  self[:filter]
end
logical_table() click to toggle source

@return [String] `logical_table` parameter value.

@since 1.1.1

# File lib/groonga/command/logical-count.rb, line 49
def logical_table
  self[:logical_table]
end
max() click to toggle source

@return [String] `max` parameter value.

@since 1.1.1

# File lib/groonga/command/logical-count.rb, line 77
def max
  self[:max]
end
max_border() click to toggle source

@return [String] `max_border` parameter value.

@since 1.1.1

# File lib/groonga/command/logical-count.rb, line 84
def max_border
  self[:max_border]
end
min() click to toggle source

@return [String] `min` parameter value.

@since 1.1.1

# File lib/groonga/command/logical-count.rb, line 63
def min
  self[:min]
end
min_border() click to toggle source

@return [String] `min_border` parameter value.

@since 1.1.1

# File lib/groonga/command/logical-count.rb, line 70
def min_border
  self[:min_border]
end
shard_key() click to toggle source

@return [String] `shard_key` parameter value.

@since 1.1.1

# File lib/groonga/command/logical-count.rb, line 56
def shard_key
  self[:shard_key]
end