Implements search using PostgreSQL full text search features. Posts are indexed by title, tags, summary, and author. Search queries support a small number of operations (provided by websearch_to_ts_query:
unquoted text: words are ANDed
"quoted text": exact match
OR: logical OR
-: the logical not operator, excludes matches with this word
Implements search using PostgreSQL full text search features. Posts are indexed by title, tags, summary, and author. Search queries support a small number of operations (provided by
websearch_to_ts_query
:unquoted text
: words are ANDed"quoted text"
: exact matchOR
: logical OR-
: the logical not operator, excludes matches with this word