Class: Ferret::Search::TermQuery

Inherits:
Object
  • Object
show all
Defined in:
ext/r_search.c

Overview

Summary

TermQuery is the most basic query and it is the building block for most other queries. It basically matches documents that contain a specific term in a specific field.

Example

query = TermQuery.new(:content, "rails")

# untokenized fields can also be searched with this query;
query = TermQuery.new(:title, "Shawshank Redemption")

Notice the all lowercase term Rails. This is important as most analyzers will downcase all text added to the index. The title in this case was not tokenized so the case would have been left as is.