Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Exact phrase searching #37

Open
rosnfeld opened this issue Feb 14, 2014 · 0 comments
Open

Exact phrase searching #37

rosnfeld opened this issue Feb 14, 2014 · 0 comments
Assignees

Comments

@rosnfeld
Copy link
Owner

This is complicated because we can't use postgres's regular full text search, as it's storing a reduced version of the document. We'll need to do something like:

  • if there is a phrase as part of the search, separate that out and use some sort of traditional "LIKE" based query to build its results
  • apply negation to that phrase if necessary
  • combine its results with those of the regular full text search (using AND)
@rosnfeld rosnfeld self-assigned this Feb 14, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant