Skip to content

Instantly share code, notes, and snippets.

@jashkenas
Created April 6, 2011 19:24
Show Gist options
  • Select an option

  • Save jashkenas/906334 to your computer and use it in GitHub Desktop.

Select an option

Save jashkenas/906334 to your computer and use it in GitHub Desktop.
select document_id, ts_headline('english', text, plainto_tsquery('#{search}'),
'minWords=10,maxWords=20,maxFragments=1')
as highlight from pages
where pages.document_id in (#{documents.map(&:id).join(',')})
and pages.text @@ plainto_tsquery('#{search}')
limit 5
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment