TSVECTOR stores a list of lexemes, optionally with integer positions and weights. TSVECTOR values are used in .
Syntax
ATSVECTOR comprises individual lexemes in the form: 'These' 'lexemes' 'are' 'not' 'normalized' 'lexemes.'.
You can optionally add the following to each lexeme:
-
One or more comma-separated integer positions:
'These':1 'lexemes':2 'are':3 'not':4 'normalized':5 'lexemes.':6 -
A weight letter (
A,B,C, orD), in combination with an integer position:'These':1 'lexemes':2B 'are':3 'not':4 'normalized':5A 'lexemes.':6BIf not specified, a lexeme’s weight defaults toD. The lexemes in aTSQUERYandTSVECTORwill only match if they have matching weights. For more information about weights, see the PostgreSQL documentation.
to_tsvector() to convert a string input to TSVECTOR:
- Derivatives of words, which are reduced using a stemming algorithm.
- Stop words. These are words that are considered not useful for indexing and searching, based on the . In the preceding example, “These”, “are”, and “not” are identified as stop words.
- Punctuation and capitalization.
normal is in the fifth position and lexem is in both the second and sixth position in the input.

