Class: ThinkingSphinx::Commands::Merge
- Inherits:
-
Base
- Object
- Base
- ThinkingSphinx::Commands::Merge
show all
- Defined in:
- lib/thinking_sphinx/commands/merge.rb
Instance Method Summary
collapse
Methods inherited from Base
call, #call_with_handling
Methods included from WithOutput
#initialize
Instance Method Details
#call ⇒ Object
4
5
6
7
8
9
10
11
12
13
|
# File 'lib/thinking_sphinx/commands/merge.rb', line 4
def call
return unless indices_exist?
controller.merge(
options[:core_index].name,
options[:delta_index].name,
:filters => options[:filters],
:verbose => options[:verbose]
)
end
|