Hello All, I've almost completed a site and all that remains is getting search working, which is proving to be a PITA. I can see what I think are the Indexes created but they're empty. To keep it simple I am just indexing 2 fields.
I'm using Umbraco 4.9. I've checked the DLL's are the most up-to-date ones.
ExamineIndex.config
<IndexSet SetName="CCGIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/CCG/">
<!-- fields specific to Umbraco -->
<IndexAttributeFields>
<add Name="id" /> <!-- required -->
<add Name="nodeName" /> <!-- required -->
<add Name="updateDate" />
<add Name="writerName" />
<add Name="path" />
<add Name="nodeTypeAlias" /> <!-- required -->
</IndexAttributeFields>
<!-- fields that you have defined in your various document types -->
<IndexUserFields>
<add Name="body" />
<add Name="title" />
</IndexUserFields>
<IncludeNodeTypes>
<add Name="textpage"/>
</IncludeNodeTypes>
<!-- specify any document types that you do NOT want to be indexed -->
<ExcludeNodeTypes />
</IndexSet>
Examine not indexing (4.9)
Hello All, I've almost completed a site and all that remains is getting search working, which is proving to be a PITA. I can see what I think are the Indexes created but they're empty. To keep it simple I am just indexing 2 fields.
I'm using Umbraco 4.9. I've checked the DLL's are the most up-to-date ones.
ExamineIndex.config
<IndexSet SetName="CCGIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/CCG/"> <!-- fields specific to Umbraco --> <IndexAttributeFields> <add Name="id" /> <!-- required --> <add Name="nodeName" /> <!-- required --> <add Name="updateDate" /> <add Name="writerName" /> <add Name="path" /> <add Name="nodeTypeAlias" /> <!-- required --> </IndexAttributeFields> <!-- fields that you have defined in your various document types --> <IndexUserFields> <add Name="body" /> <add Name="title" /> </IndexUserFields> <IncludeNodeTypes> <add Name="textpage"/> </IncludeNodeTypes> <!-- specify any document types that you do NOT want to be indexed --> <ExcludeNodeTypes /> </IndexSet>ExamineSettings.config
<add name="CCGIndexer" type="UmbracoExamine.MemberLuceneExamineIndexer, UmbracoExamine" dataService="UmbracoExamine.DataServices.UmbracoDataService, UmbracoExamine" runAsync="true" supportUnpublished="false" supportProtected="false" interval="10" analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" indexSet="CCGIndexSet" enableDefaultEventHandler="true" />After making the above changes I see the following files created:
The Umbraco Logs I see this:
I downloaded the segments to look in LUKE nothing in them.
Can anyone help? This is really frustrating me.
is working on a reply...
This forum is in read-only mode while we transition to the new forum.
You can continue this topic on the new forum by tapping the "Continue discussion" link below.