class ThinkingSphinx::Commands::Stop

Public Instance Methods

call() click to toggle source
# File lib/thinking_sphinx/commands/stop.rb, line 4
def call
  unless command :running
    log 'searchd is not currently running.'
    return
  end

  pid = controller.pid
  until !command :running do
    controller.stop options
    sleep(0.5)
  end

  log "Stopped searchd daemon (pid: #{pid})."
end

Private Instance Methods

type() click to toggle source
# File lib/thinking_sphinx/commands/stop.rb, line 21
def type
  'stop'
end