Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save orangewolf/e9c57ba3f09035a7baffb9bcd76d91db to your computer and use it in GitHub Desktop.
Save orangewolf/e9c57ba3f09035a7baffb9bcd76d91db to your computer and use it in GitHub Desktop.
# Remove orphan search records from a collection
search = ActiveFedora::SolrService.get("member_of_collection_ids_ssim: 6h440t714", rows: 100000); nil
search['response']['docs'].each do |doc|
if Work.where(id: doc['id']).blank?
ActiveFedora::SolrService.delete(doc['id'])
end
end; nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment