Skip to content

Instantly share code, notes, and snippets.

@mwmitchell
Created January 20, 2009 11:24
Show Gist options
  • Save mwmitchell/49436 to your computer and use it in GitHub Desktop.
Save mwmitchell/49436 to your computer and use it in GitHub Desktop.
# solr query builder
response = solr.search do |s|
s.query ''
s.phrase_query ''
s.filter :author, 'ernst'
s.phrase_filter :location, 'South'
s.fq '' # override / merge s.filter and s.phrase_filter ?
s.q '' # override / merge s.query and s.phrase_query ?
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment