Resolving Slow Search Interface Loading in Sitecore
Note: This topic is not applicable to Coveo for Sitecore, but rather to a legacy integration of a Coveo .NET Front-End search interface in Sitecore.
This unusual slow rendering of the Coveo search interface pages may be caused by the Sitecore cache settings. The Coveo search interfaces take advantage of browser caching to prevent repeatedly loading frequently used components, and therefore significantly reduce page loading time.
To resolve slow search interface loading in Sitecore
-
Using an administrator account, connect to the Sitecore server.
-
Using a text editor:
-
Open the Sitecore web.config file.
-
In the file, as shown in the following web.config file excerpt, ensure that DisableBrowserCaching is set to false.
<!-- DISABLE BROWSER CACHING If true, all pages will have: Cache-Control: no-cache, no-store Pragma: no-cache in the http header --> <setting name="DisableBrowserCaching" value="false" />
-
Save the file.
-