Introduction
Search request can be cached using a certain duration using the StaticallyCacheFor method which accepts a timespan. No cache key is required
as that will be automatically generated from the search request.
Examples
The code below will either return a previously cached result or execute the query and cache the result for five minutes.
C#
var result = client.Search<BlogPost>()
.StaticallyCacheFor(TimeSpan.FromMinutes(5))
.GetResult();
It is also possible to cache results with a dependency (System.Web.Caching.Dependency) using an overload to the StaticallyCacheFor method.
Do you find this information helpful? Please log in to provide feedback.