I have about 800 nodes in the website with the same Document type.
Ive created a new indexer for this type only and for some reason examine is indexing only some of the prop for only part of the nodes while indexing all of the prop for the rest of the nodes.
Examine's Index issue
Hi there,
I have about 800 nodes in the website with the same Document type.
Ive created a new indexer for this type only and for some reason examine is indexing only some of the prop for only part of the nodes while indexing all of the prop for the rest of the nodes.
Am I missing anythiing?
Regards,
mkariti
Hi mkariti,
Have you got an example of your Examine config from both the index and setting files?
Dan.
Hi Dan,
Many thanks for your reply.
Here are the configs:
<IndexSet SetName="FoodIngredientIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/FoodIngredients/">
<IndexAttributeFields>
<add Name="id" />
<add Name="nodeName" />
<add Name="updateDate" />
<add Name="writerName" />
<add Name="path" />
<add Name="nodeTypeAlias" />
</IndexAttributeFields>
<IndexUserFields>
<add Name="fiAllergens"/>
<add Name="fiHealthProblems"/>
<add Name="fiFoodPreference"/>
<add Name="fiBreastFeeding"/>
<add Name="isZoneItem"/>
<add Name="relateToArticle"/>
<add Name="relateItemToMenu"/>
</IndexUserFields>
<IncludeNodeTypes>
<add Name="FoodIngredient"/>
</IncludeNodeTypes>
<ExcludeNodeTypes />
</IndexSet>
<add name="FoodIngredientSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine"
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" enableLeadingWildcards="true"
IndexSet="FoodIngredientIndexSet" />
<add name="FoodIngredientIndexer" type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine"
supportUnpublished="false"
supportProtected="false"
interval="10"
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net"
IndexSet="FoodIngredientIndexSet" />
Regards,
mkariti
is working on a reply...