Try our conversational search powered by Generative AI!

Loading...
Area: Optimizely Search & Navigation
ARCHIVED This content is retired and no longer maintained. See the latest version here.

Recommended reading 

Introduction

This document describes how to handle multiple searches in one single request in EPiServer Find, which is useful in order to reduce the number of requests and speed up search.

How it works

When you handle multiple search in one single request, an IEnumerable<SearchResults<T>> will be returned. There are several use cases for this, since several queries for a specific content, for instance a page can be done in one roundtrip.

Below is a simple multi-search example.

C#
results = service.MultiSearch<Article>()
                .Search<Article>(x => x.For("Banana").InField(y => y.Title))
                .Search<Article>(x => x.For("Annanas").InField(y => y.Title))
                .GetResult();

In the example above both queries search in the Article type and also return the article type. However, it is also possible to search in different types and return different types, using the powerful projections in EPiServer Find as in the example below.

C#
IEnumerable<SearchResults<string>> results = service.MultiSearch<string>()
    .Search<Article, string>(x => x.For(indexedArticle.Title).InField(y => y.Title).Select(y => y.Title))
    .Search<User, string>(x => x.For(indexedUser.Name).InField(y => y.Name).Select(y => y.Name)).GetResult();

The results are always returned in the same way as they are searched for, so that the first result will be the first query. Also, these will of course only count as one query against the index.

The number of searches you can send in one multi search request is limited by 10. This limitation is there to protect the service from abuse.

Do you find this information helpful? Please log in to provide feedback.

Last updated: Jun 10, 2014

Recommended reading