Home Insights Search Implementing autocomplete with Solr
Implementing autocomplete with Solr

Implementing autocomplete with Solr

In recent years, autocomplete has become a staple feature for searches of all types.
Whether Google, Amazon, or smaller sites and vendors, predictive typing, as it’s otherwise known, (also sometimes called auto-suggest, search-as-you-type or type-ahead) has become an expected part of an engaging, user-friendly search experience.

Solr, an open-source framework that powers many of the world’s most popular e-commerce sites and applications, supports three approaches to auto-complete implementation: 

  • Single term suggestion
    This method looks for the first letter, then the first word in a phrase, a search for “men’s shirts” must begin with “m,” then “men’s,” to bring up “men’s shirts” as a response.
  • Multiterm unordered suggestions
    This autocomplete method recognizes “shirts” as part of the phrase, like “men’s shirts,” and suggests it to the customer along with “women’s shirts,” “work shirts,” and other phrases that contain “men’s.”
  • Multiterm ordered suggestions
    The third method matches everything that contains a subphrase of the complete phrase as long as it’s in the correct order, i.e. “men’s shir,” but not “shirts me.”

example of type-ahead search

Solr supports all three of these approaches via field type, which defines how data in a given field is interpreted and queried. 

Implementing single term suggestions with Solr

Suppose our requirement is:

Match as a suggest everything that starts exactly with the phrase ________ 

If we have the “my little pony” phrase in our index, it should show when the user types:

  • my
  • my litt
  • my little po

However, prediction will not occur when the user types: 

  • little
  • little po

In this case, we need the search to take into account every phrase in our index, as well as every partial phrase the user types in as a single term, and use KeywordTokenizer for the suggestion field:

 <fieldType name="suggestion_text" class="solr.TextField" positionIncrementGap="100">
   <analyzer>
      <tokenizer class="solr.KeywordTokenizerFactory" />
   </analyzer>
</fieldType>

…and then use wildcards when querying: 

my little po*

An alternative to using a wildcard query is the edge n-gram approach. It requires storing every prefix for a given phrase in the index. Let’s take “my little pony,” with this configuration as an example:

 <fieldType name="suggestion_text" class="solr.TextField" positionIncrementGap="100">
   <analyzer type="index">
      <tokenizer class="solr.KeywordTokenizerFactory"/>
      <filter class="solr.EdgeNGramFilterFactory" maxGramSize="100"/>
   </analyzer>
   <analyzer type="query">
      <tokenizer class="solr.KeywordTokenizerFactory" />
   </analyzer>
</fieldType>

 Acceptable partial search phrases would be:

  • m
  • my
  • my l
  • my li
  • ….
  • my little po

This approach has an obvious benefit in that a query that is powered with a larger index is not only simpler; but also performs faster, in general.

Implementing multiterm unordered suggestions with Solr


In this case, assume that our requirement changed to:

Match as a suggestion everything that contains the user’s phrase as a subphrase.

 The phrase, “My little pony” should now appear when the user types:
  • little
  • little pony
  • little my p

Whereas, prediction should not occur when the user types:

  • my funny littl
  • funny littl

Setting up the query to behave in this way isn’t hard:  it requires every phrase to be split in the index. The user’s phrase also needs to be parsed into a set of words:

<fieldType name="prefix_text" class="solr.TextField" positionIncrementGap="100">
    <analyzer type="index">
        <tokenizer class="solr.StandardTokenizerFactory" />
    </analyzer>
    ...
</fieldType>

…and search for: 

my AND little AND po*

The same edge n-gram technique mentioned above can be applied on a single-word basis, with prefixes for each individual word stored as well.

Implementing multiterm ordered suggestions with Solr

In this this last case, our requirement now is:

Match as a suggestion everything that contains the user’s phrase as a subphrase.

This means “my little pony” would appear when the user types:

  • little
  • little po

Whereas, prediction wouldn’t occur in these cases:

  • little my p
  • my pony littl

One solution is to amend our first use case by adding a leading wildcard to the query:

*my little po*

The problem with applying this solution is that Solr will have to execute a full term scan to check for every term that is a possible match, rendering the query very slow. Additionally, the reverse wildcard technique shouldn’t be applied to this use case because we have wildcards on both ends, making the query even slower.

Luckily, But we can go a different way by expanding Solr’s functionality a bit.
First, we need to create word-based suffixes for phrases in the index. For “my little pony” they would be:

  • my little pony
  • little pony
  • pony

Solr doesn’t have built-in features to generate this, but we can implement our own token filter:

public final class SuffixShingleTokenFilter extends TokenFilter {
    private final CharTermAttribute termAtt = addAttribute(CharTermAttribute.class);
    private String[] tokens;
    private int index = 0;
public SuffixShingleTokenFilter(TokenStream input) {
    super(input);
}

@Override
public boolean incrementToken() throws IOException {
    while (true) {
        if (tokens == null) {
            if (!input.incrementToken()) {
                return false;
            } else {
                final CharTermAttribute attribute = input.getAttribute(CharTermAttribute.class);
                tokens = attribute.toString().split(" ");
            }
        }
        if (tokens.length - index &gt; 0) {
            final String suffix = IntStream.range(index, tokens.length)
            .mapToObj(i -&gt; tokens[i])
            .collect(Collectors.joining(" "));
            termAtt.copyBuffer(suffix.toCharArray(), 0, suffix.length());
            index += 1;
            return true;
        }
        tokens = null;
    }
}

@Override
public void reset() throws IOException {
    super.reset();
    tokens = null;.;o
    index = 0;
}

}

Every element from the generated collection of prefixes will now be matched as a suggestion if and only if  “it starts identically to the user’s phrase.”  By implementing our own token filter we can now apply both single term suggestions (prefix query) and multiterm ordered suggestions (n-gram search) to achieve the desired functionality.

Conclusion 

In this article, we have covered the basics of implementing generic autocomplete requirements in Solr. But this is just the tip of the iceberg. Queries are complex, and creating a positive user experience is directly correlated to how easy it is to find a given product, service or the right information. There are any number of nuances that we can take into consideration. For instance, what if you want to match “my little pony” to “my small pony,” or even the common acronym “MLP” but do not want to match it to “my pony is too little?” These are just a few of the many advanced applications of  autocomplete functionality. Be sure to watch for our  next blog post on Solr, which will contain more information about how to implement autocomplete, including a  Solr Suggester tutorial.

For load generation you need to create

Get in touch

We'd love to hear from you. Please provide us with your preferred contact method so we can be sure to reach you.

    Implementing autocomplete with Solr

    Thank you for getting in touch with Grid Dynamics!

    Your inquiry will be directed to the appropriate team and we will get back to you as soon as possible.

    check

    Something went wrong...

    There are possible difficulties with connection or other issues.
    Please try again after some time.

    Retry