Google News
logo
PostgreSQL - Interview Questions
What do you understand by inverted file in PostgreSQL?
In PostgreSQL, an inverted file is an index data structure used to map content to its location to a database file, within a document, or in sets of documents. It generally includes the distinct words found in a text and a list containing the occurrences of a word in the text. It is used in a data structure for document retrieval systems to provide a full-text search.
Advertisement