# File lib/thinking_sphinx/interfaces/daemon.rb, line 4
  def start
    if command :running
      raise ThinkingSphinx::SphinxAlreadyRunning, 'searchd is already running'
    end

    command(options[:nodetach] ? :start_attached : :start_detached)
  end