Created
December 23, 2014 00:55
-
-
Save rustyswayne/777ed32802124f9d2557 to your computer and use it in GitHub Desktop.
Merch-v6 Simple ExamineSettings.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 add your own search/index providers. | |
Index sets can be defined in the ExamineIndex.config if you're using the standard provider model. | |
More information and documentation can be found on CodePlex: http://umbracoexamine.codeplex.com | |
--> | |
<Examine> | |
<ExamineIndexProviders> | |
<providers> | |
<add name="InternalIndexer" type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine" supportUnpublished="true" supportProtected="true" analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net" /> | |
<add name="InternalMemberIndexer" type="UmbracoExamine.UmbracoMemberIndexer, UmbracoExamine" supportUnpublished="true" supportProtected="true" analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" /> | |
<!-- default external indexer, which excludes protected and unpublished pages--> | |
<add name="ExternalIndexer" type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine" /> | |
<add name="MerchelloProductIndexer" type="Merchello.Examine.Providers.ProductIndexer, Merchello.Examine" /> | |
<add name="MerchelloInvoiceIndexer" type="Merchello.Examine.Providers.InvoiceIndexer, Merchello.Examine" /> | |
<add name="MerchelloOrderIndexer" type="Merchello.Examine.Providers.OrderIndexer, Merchello.Examine" /> | |
<add name="MerchelloCustomerIndexer" type="Merchello.Examine.Providers.CustomerIndexer, Merchello.Examine" /> | |
</providers> | |
</ExamineIndexProviders> | |
<ExamineSearchProviders defaultProvider="ExternalSearcher"> | |
<providers> | |
<add name="InternalSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine" analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net" /> | |
<add name="ExternalSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine" /> | |
<add name="InternalMemberSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine" analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" enableLeadingWildcard="true" /> | |
<add name="MerchelloProductSearcher" type="Examine.LuceneEngine.Providers.LuceneSearcher, Examine" /> | |
<add name="MerchelloInvoiceSearcher" type="Examine.LuceneEngine.Providers.LuceneSearcher, Examine" /> | |
<add name="MerchelloOrderSearcher" type="Examine.LuceneEngine.Providers.LuceneSearcher, Examine" /> | |
<add name="MerchelloCustomerSearcher" type="Examine.LuceneEngine.Providers.LuceneSearcher, Examine" /> | |
</providers> | |
</ExamineSearchProviders> | |
</Examine> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment