Sha256: b3fd13eb30d3a789adf25bed4898ec880633a4f8256fce6675ef0592f6037b02

Contents?: true

Size: 1.05 KB

Versions: 6

Compression:

Stored size: 1.05 KB

Contents

module Spotlight
  module SolrDocument
    ##
    # Solr indexing strategy using Solr's Atomic Updates
    module AtomicUpdates
      def reindex
        return unless write?

        data = hash_for_solr_update(to_solr)

        blacklight_solr.update params: { commitWithin: 500 }, data: data.to_json, headers: { 'Content-Type' => 'application/json' } unless data.empty?
      end

      def write?
        Spotlight::Engine.config.writable_index
      end

      private

      def hash_for_solr_update(data)
        Array.wrap(data).map { |doc| convert_document_to_atomic_update_hash(doc) }.reject { |x| x.length <= 2 }
      end

      def convert_document_to_atomic_update_hash(doc)
        output = doc.each_with_object({}) do |(k, v), hash|
          hash[k] = if k.to_sym == self.class.unique_key.to_sym
                      v
                    else
                      { set: v }
                    end
        end
        output[Blacklight::Configuration.default_values[:index].timestamp_field] ||= { set: nil }
        output
      end
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
blacklight-spotlight-2.4.1 app/models/concerns/spotlight/solr_document/atomic_updates.rb
blacklight-spotlight-2.4.0 app/models/concerns/spotlight/solr_document/atomic_updates.rb
blacklight-spotlight-2.3.3 app/models/concerns/spotlight/solr_document/atomic_updates.rb
blacklight-spotlight-2.3.2 app/models/concerns/spotlight/solr_document/atomic_updates.rb
blacklight-spotlight-2.3.1 app/models/concerns/spotlight/solr_document/atomic_updates.rb
blacklight-spotlight-2.3.0 app/models/concerns/spotlight/solr_document/atomic_updates.rb