Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Dear Umbraco Team
Im using Umbraco 8 search out of the box simple search box and results page no custom code for indexers.
Im getting a Lucene.Net.Search.BooleanQuery+TooManyClauses: maxClauseCount is set to 1024 error in log viewer.
Google search says i can increase SetMaxClauseCount to 2048, how can i do that in Umbraco 8 ?
Dibs
Solution for Umbraco 12+: @using Lucene.Net.Search
@{
BooleanQuery.MaxClauseCount = Int32.MaxValue;
}
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Umbraco Search error
Dear Umbraco Team
Im using Umbraco 8 search out of the box simple search box and results page no custom code for indexers.
Im getting a Lucene.Net.Search.BooleanQuery+TooManyClauses: maxClauseCount is set to 1024 error in log viewer.
Google search says i can increase SetMaxClauseCount to 2048, how can i do that in Umbraco 8 ?
Dibs
Solution for Umbraco 12+: @using Lucene.Net.Search
@{
}
is working on a reply...