Advertisement
Guest User

Untitled

a guest
Dec 9th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.79 KB | None | 0 0
  1. <?xml version="1.0"?>
  2. <!--
  3. Umbraco examine is an extensible indexer and search engine.
  4. This configuration file can be extended to add your own search/index providers.
  5. Index sets can be defined in the ExamineIndex.config if you're using the standard provider model.
  6.  
  7. More information and documentation can be found on GitHub: https://github.com/Shazwazza/Examine/
  8. -->
  9. <Examine>
  10.   <ExamineIndexProviders>
  11.     <providers>
  12.       <add name="InternalIndexer" type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine"
  13.           supportUnpublished="true"
  14.           supportProtected="true"
  15.           analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/>
  16.  
  17.       <add name="InternalMemberIndexer" type="UmbracoExamine.UmbracoMemberIndexer, UmbracoExamine"
  18.           supportUnpublished="true"
  19.           supportProtected="true"
  20.           analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net"/>
  21.  
  22.         <!-- default external indexer, which excludes protected and unpublished pages-->
  23.         <add name="ExternalIndexer" type="UmbracoExamine.UmbracoContentIndexer, UmbracoExamine"/>
  24.      
  25.     </providers>
  26.   </ExamineIndexProviders>
  27.  
  28.   <ExamineSearchProviders defaultProvider="ExternalSearcher">
  29.     <providers>
  30.       <add name="InternalSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine"
  31.           analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/>
  32.        
  33.       <add name="ExternalSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine" />
  34.      
  35.       <add name="InternalMemberSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine"
  36.           analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" enableLeadingWildcard="true"/>
  37.  
  38.     </providers>
  39.   </ExamineSearchProviders>
  40.  
  41. </Examine>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement