Module: SolrDocHelper

Instance Method Summary collapse

Instance Method Details

#add_solr_value(solr_doc, field_name, value, field_type = :default, index_types = [:searchable]) ⇒ Object



2
3
4
5
6
7
8
# File 'lib/dor/utils/solr_doc_helper.rb', line 2

def add_solr_value(solr_doc, field_name, value, field_type = :default, index_types = [:searchable])
  case field_type
    when :symbol
      index_types << field_type
  end
  ::Solrizer.insert_field(solr_doc, field_name, value, *index_types)
end