<ExamineLuceneIndexSets>
<!-- The internal index set used by Umbraco back-office - DO NOT REMOVE -->
<IndexSet SetName="InternalIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/Internal/"/>
<!-- The internal index set used by Umbraco back-office for indexing members - DO NOT REMOVE -->
<IndexSet SetName="InternalMemberIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/InternalMember/">
<IndexAttributeFields>
<add Name="id" />
<add Name="nodeName"/>
<add Name="updateDate" />
<add Name="writerName" />
<add Name="loginName" />
<add Name="email" />
<add Name="nodeTypeAlias" />
</IndexAttributeFields>
</IndexSet>
<!-- Default Indexset for external searches, this indexes all fields on all types of nodes-->
<IndexSet SetName="ExternalIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/External/" />
</ExamineLuceneIndexSets>
The attribute fields for BlogPage are not the same. They are blogDescription, blogTitle, and blogPost.
Lucene search
Hi, I am having some issues with Lucene. I have a site-wide search but for some reason the search is not including the blog node component of my site.
Any ideas would be greatly appreciated. :)
Additional info:
-->search provides results for entire site (including various child nodes)
-->node structure is:
Search doesn't include results for Blog page, or even pick up the blog node.
Hi Bobi
Can you check examine config? What fields are in your index? Are these fields have the same alias as fields on BlogPage Page?
Alex
Thanks for the reply Alex.
My ExamineIndex.config has the following:
The attribute fields for BlogPage are not the same. They are blogDescription, blogTitle, and blogPost.
Alex, any thoughts on this?
is working on a reply...