Only 10 pages are coming into smart search result.on other pages no results.

Ranapratap Bhopale asked on July 2, 2018 11:30

In smart search result ,I have 1500 records(i.e. 1-150 pagination) ,I have implemented paging through universal pager ,each page have 10 records,but it is showing only upto 1000 records(i.e. page 100) from 100 -150 data is not rendering/coming from database, how to fix this?

Recent Answers


Dragoljub Ilic answered on July 2, 2018 12:18

Hi Ranapratap,

You can add this key in webconfig to limit search results to any number that you want:

<add key="CMSSearchMaxResultsNumber" value="3000" />

If this key is not placed in web config, default value is 1000 (first 1000 results in lucene will be taken). From the documentation for k11:

The purpose of the limit is to avoid processing of large numbers of search results with low relevance. If you use very large search indexes that regularly produce more than 1000 results (the default limit), you can either increase the value or set up search filters to help narrow down the search.

Best regards, Dragoljub

2 votesVote for this answer Mark as a Correct answer

   Please, sign in to be able to submit a new answer.