Created
December 23, 2014 00:56
-
-
Save rustyswayne/6d1d75ee29dc8f0f6f67 to your computer and use it in GitHub Desktop.
Merch-v6 Simple ExamineIndex.config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0"?> | |
<!-- | |
Umbraco examine is an extensible indexer and search engine. | |
This configuration file can be extended to create your own index sets. | |
Index/Search providers can be defined in the UmbracoSettings.config | |
More information and documentation can be found on CodePlex: http://umbracoexamine.codeplex.com | |
--> | |
<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/" /> | |
<IndexSet SetName="MerchelloProductIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/Merchello/Product/" /> | |
<IndexSet SetName="MerchelloInvoiceIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/Merchello/Invoice/" /> | |
<IndexSet SetName="MerchelloOrderIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/Merchello/Order/" /> | |
<IndexSet SetName="MerchelloCustomerIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/Merchello/Customer/" /> | |
</ExamineLuceneIndexSets> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment