# File lib/riddle/controller.rb, line 50
    def start(options = {})
      return if running?
      check_for_configuration_file

      command = "#{searchd} --pidfile --config \"#{@path}\""
      command = "#{command} --nodetach" if options[:nodetach]

      exec(command) if options[:nodetach]

      # Code does not get here if nodetach is true.
      Riddle::ExecuteCommand.call command, options[:verbose]
    end