# File lib/thinking_sphinx/interfaces/real_time.rb, line 16
  def index
    return if indices.empty?
    if !command :running
      stream.puts "The Sphinx daemon is not currently running. Real-time indices can only be\npopulated by sending commands to a running daemon.\n"
      return
    end

    command :index_real_time, :indices => indices
  end