InterviewSolution
Saved Bookmarks
| 1. |
What is inverted file in PostgreSQL? |
|
Answer» In POSTGRESQL, an Inverted file is basically an index data STRUCTURE used for mapping content to its location to a database file, WITHIN a document, or in sets of documents. It is usually composed of all the distinct words found in a text and a list containing the occurrences of a WORD in the text. The inverted file is widely used in a data structure for document retrieval systems in supporting a full-text SEARCH. |
|