Friday, 7 August 2015

Indexing concept to enable faster search by lucene or Inverted Index concepts ?

Lucene creates something called Inverted Index. Normally we map   
document -> terms in the document. (here document is collection of information or searchable items)
But, Lucene does the reverse.

Creates a index term -> list of documents containing the term, which makes it faster to search.


No comments:

Post a Comment