Sha256: c94e2528cc28cb57fa74378c954c2c25594872aab11054fadddbfe19be9dfe4e
Contents?: true
Size: 1.11 KB
Versions: 22
Compression:
Stored size: 1.11 KB
Contents
# frozen_string_literal: true module Spotlight module SolrDocument ## # Solr indexing strategy using Solr's Atomic Updates module AtomicUpdates def reindex(update_params: { commitWithin: 500 }) return unless write? data = hash_for_solr_update(to_solr) blacklight_solr.update params: update_params, 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
22 entries across 22 versions & 1 rubygems