Skip to content

Latest commit

 

History

History
37 lines (31 loc) · 1.54 KB

30_Ngram_intro.asciidoc

File metadata and controls

37 lines (31 loc) · 1.54 KB

Ngrams for partial matching

As we have said before: `you can only find terms that exist in the inverted index''. While the `prefix, wildcard and regexp queries demonstrated that that is not strictly true, it is true that doing a single term lookup is much faster than iterating through the terms list to find matching terms on the fly. Preparing your data for partial matching ahead of time will increase your search performance.

Preparing your data at index time means choosing the right analysis chain, and the tool that we use for partial matching is the n-gram. An n-gram can be best thought of as a `moving window on a word''. The n stands for a length. If we were to n-gram the word `quick, the results would depend on the length we have chosen:

Length 1 (unigram)

[ q, u, i, c, k ]

Length 2 (bigram)

[ qu, ui, ic, ck ]

Length 3 (trigram)

[ qui, uic, ick ]

Length 4 (four-gram)

[ quic, uick ]

Length 5 (five-gram)

[ quick ]

Plain n-grams are useful for matching `somewhere within a word'', a technique that we will use in [ngrams-compound-words]. However, for search-as-you-type, we use a specialised form of n-grams called edge n-grams. Edge n-grams are anchored to the beginning of the word. Edge n-gramming the word `quick would result in:

  • q

  • qu

  • qui

  • quic

  • quick

You may notice that this conforms exactly to the letters that a user would type if they wanted to search for ``quick''. In other words, these are the perfect terms to use for instant search!