40 lines
1.6 KiB
XML
40 lines
1.6 KiB
XML
<?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 enableDefaultEventHandler="true">
|
|
<providers>
|
|
<add name="InternalIndex" type="UmbracoExamine.LuceneExamineIndexer, UmbracoExamine"
|
|
indexSet="Default"
|
|
enabled="true"
|
|
runAsync="true"
|
|
supportUnpublished="true"
|
|
analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/>
|
|
|
|
<!-- This is an example of an index provider created for the Creative Website Starter kit
|
|
<add name="CWSIndex" type="UmbracoExamine.LuceneExamineIndexer, UmbracoExamine"
|
|
indexSet="CWSIndex"
|
|
enabled="false"
|
|
debug="false"/>
|
|
-->
|
|
</providers>
|
|
</ExamineIndexProviders>
|
|
<ExamineSearchProviders defaultProvider="InternalSearch">
|
|
<providers>
|
|
<add name="InternalSearch" type="UmbracoExamine.LuceneExamineSearcher, UmbracoExamine"
|
|
indexSet="Default"
|
|
analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/>
|
|
|
|
<!-- This is an example of a search provider created for the Creative Website Starter kit
|
|
<add name="CWSIndex" type="UmbracoExamine.LuceneExamineSearcher, UmbracoExamine"
|
|
indexSet="CWSIndex"/>
|
|
-->
|
|
</providers>
|
|
</ExamineSearchProviders>
|
|
</Examine>
|