Looking for insight into the differences without getting the source code. I currently using umbracoExamine.Contrib to search for FileTextContent (.pdf docs) and it seems to combine all other data such as bodyText and my custom user fields. Below is my filter code and my IndexSet. Just looking for best practices. Also in the future if I need to search against .docx, .txt what would be the best way?
Thanks!
Jason
var criteria = ExamineManager.Instance.SearchProviderCollection["ContentAndPDFSearcher"].CreateSearchCriteria(BooleanOperation.Or);
var filter = criteria.GroupedOr(newstring[] { "nodeName", "bodyText", "FileTextContent", "productTitle" }, SearchTerm)
.Not()
.Field("umbracoNaviHide", "1")
.Compile();
umbracoExamine.Contrib vs umbracoExamine.PDF
Looking for insight into the differences without getting the source code. I currently using umbracoExamine.Contrib to search for FileTextContent (.pdf docs) and it seems to combine all other data such as bodyText and my custom user fields. Below is my filter code and my IndexSet. Just looking for best practices. Also in the future if I need to search against .docx, .txt what would be the best way?
Thanks!
Jason
is working on a reply...