GIN Index
— inverted index for composite values
← all topics
CREATE INDEX
ON articles
USING GIN
(to_tsvector(
'english'
, body));
SELECT
*
FROM
articles
WHERE
body @@
'quick & fox'
;
Documents
Inverted index — term → posting list