Sha256: 0089fcbea86fcafc91c5a9b3d36690a98410c53297c15d8ee16554fe3746f050

Contents?: true

Size: 932 Bytes

Versions: 6

Compression:

Stored size: 932 Bytes

Contents

# frozen_string_literal: true

class ThinkingSphinx::RealTime::Populator
  def self.populate(index)
    new(index).populate
  end

  def initialize(index)
    @index = index
  end

  def populate(&block)
    instrument 'start_populating'

    scope.find_in_batches(:batch_size => batch_size) do |instances|
      transcriber.copy *instances
      instrument 'populated', :instances => instances
    end

    instrument 'finish_populating'
  end

  private

  attr_reader :index

  delegate :controller, :batch_size, :to => :configuration
  delegate :scope,                   :to => :index

  def configuration
    ThinkingSphinx::Configuration.instance
  end

  def instrument(message, options = {})
    ActiveSupport::Notifications.instrument(
      "#{message}.thinking_sphinx.real_time", options.merge(:index => index)
    )
  end

  def transcriber
    @transcriber ||= ThinkingSphinx::RealTime::Transcriber.new index
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
thinking-sphinx-4.3.2 lib/thinking_sphinx/real_time/populator.rb
thinking-sphinx-4.3.1 lib/thinking_sphinx/real_time/populator.rb
thinking-sphinx-4.3.0 lib/thinking_sphinx/real_time/populator.rb
thinking-sphinx-4.2.0 lib/thinking_sphinx/real_time/populator.rb
thinking-sphinx-4.1.0 lib/thinking_sphinx/real_time/populator.rb
thinking-sphinx-4.0.0 lib/thinking_sphinx/real_time/populator.rb