# File lib/thinking_sphinx/active_record/callbacks/update_callbacks.rb, line 14
  def after_update
    return unless !ThinkingSphinx::Callbacks.suspended? && updates_enabled?

    indices.each do |index|
      update index unless index.distributed?
    end
  end