ventrian / News-Articles

News Articles for DNN has been helping DNN administrators to publish articles and blogs to their DNN portals since 2004.
MIT License
38 stars 24 forks source link

articles missing from Lucene search index #61

Open jasclar opened 3 years ago

jasclar commented 3 years ago

In modules with large numbers of articles, Lucene only indexes the first 100.

See stored procedure [DnnForge_NewsArticles_GetArticleListBySearchCriteria] which includes:

IF( @PageSize is null )
    SET @PageSize = 100

Increasing this value from 100 to 99999 allows many more articles to be indexed.