I have a custom index for my products and I am using the Subset Analyzer. This Analyzer works great, but if you do field searches, it does not work.For example, I have a document with the following fields:"documentname", "My-Document-Name""tags", "1234,5678,9101""documentdescription", "This is a great Document, My-Document-Name."When I just search "name AND tags:(1234)", I get this document in my results because it searches +_content:name. -- However:When I search "documentname:(name)^3.0 AND tags:(1234)", I do not get this document in my results.Of course, when I do "documentname:(*name*)^3.0" I get a parse error saying: '*' or '?' not allowed as first character in WildcardQuery.How can I either enable wildcard query in my custom CMS.Search webpart?
↧