Skip to content

Instantly share code, notes, and snippets.

@bds
Created November 7, 2011 19:50
Show Gist options
  • Save bds/1345955 to your computer and use it in GitHub Desktop.
Save bds/1345955 to your computer and use it in GitHub Desktop.
Example Debug for Sunpsot Solr hit objects
search = Sunspot.search(JobPosting) do
keywords 'sales'
end
search.hits.each do |h|
ap [ h.score,
h.result.attributes.select {|k,v| ["title", "description"].include? k }]
end;nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment