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
Hi,
Why cant I find the word "of" in my search?
Example 1:
nodeName: King of Scotland
Examine:
+nodeName:king* AND +nodeName:of* +nodeName:king* AND +nodeName:*of* nodeName:of* nodeName:*of*
No one of the above will result with any hits
Example 2:
nodeName: Hellofefe
nodeName:*of*
ONE RESULT!
WHY? tearing my hair out
Because the StandardAnalyzer removes English stopwords :-)
Read more here: https://our.umbraco.org/forum/developers/extending-umbraco/26320-Examine-Analyser-Stop-words-versus-Case-Sensitive
Thanks!
public class MyAnalyzer : StandardAnalyzer { public MyAnalyzer() : base(Lucene.Net.Util.Version.LUCENE_29, new Hashtable()) { } }
But how about:
Example 3
nodeName: Home & Things
+nodeName:Home* +nodeName:&*
No result
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Examine excluding words?
Hi,
Why cant I find the word "of" in my search?
Example 1:
nodeName: King of Scotland
Examine:
No one of the above will result with any hits
Example 2:
nodeName: Hellofefe
Examine:
ONE RESULT!
WHY? tearing my hair out
Because the StandardAnalyzer removes English stopwords :-)
Read more here: https://our.umbraco.org/forum/developers/extending-umbraco/26320-Examine-Analyser-Stop-words-versus-Case-Sensitive
Thanks!
But how about:
Example 3
nodeName: Home & Things
Examine:
No result
is working on a reply...