app.config
上传用户:huiyue
上传日期:2022-04-08
资源大小:1429k
文件大小:3k
源码类别:

搜索引擎

开发平台:

ASP/ASPX

  1. <?xml version="1.0"?>
  2. <configuration>
  3. <appSettings>
  4.     <!-- How much logging info is displayed (0:none, 5:maximum) -->
  5.     <add key="Searcharoo_IndexerDefaultVerbosity" value="4"/>
  6.     
  7. <!-- Whether to serialize the Catalog to XML for 'viewing' (it's ALWAYS Binary Serialized) -->
  8. <add key="Searcharoo_DebugSerializeXml" value="true"/>
  9. <!-- Seconds to wait for a page to respond, before giving up -->
  10. <add key="Searcharoo_RequestTimeout" value="5"/>
  11. <!-- First page to search - should have LOTS of links to follow http://localhost:2732/Searcharoo.net/;-->
  12.     <add key="Searcharoo_VirtualRoot"
  13.          value="http://searcharoo.net/default.aspx"/>
  14.     
  15.     <!-- Limit to the number of 'levels' of links to follow -->
  16. <add key="Searcharoo_RecursionLimit" value="200"/>
  17. <!-- Request another page after waiting x seconds; use zero ONLY on your own/internal sites -->
  18. <add key="Searcharoo_SpeedLimit" value="1"/>
  19. <!-- Whether to use stemming (English only), and if so, what mode [ Off | StemOnly | StemAndOriginal ] -->
  20. <add key="Searcharoo_StemmingType" value="1"/>
  21. <!-- Whether to use stop words (English only), and if so, what mode [ Off | Short | List ] -->
  22. <add key="Searcharoo_StoppingType" value="2"/>
  23. <!-- Whether to use go words (English only), and if so, what mode [ Off | On ] -->
  24. <add key="Searcharoo_GoType" value="1"/>
  25. <!-- Number of characters to include in 'file summary' -->
  26. <add key="Searcharoo_SummaryChars" value="350"/>
  27. <!-- User Agent sent with page requests, in case you wish to change it -->
  28. <add key="Searcharoo_UserAgent" value="Mozilla/6.0 (MSIE 6.0; Windows NT 5.1; Searcharoo.NET; robot)"/>
  29. <!-- Application[] cache key where the Catalog is stored, in case you need to alter it -->
  30. <add key="Searcharoo_CacheKey" value="Searcharoo_Catalog"/>
  31. <!-- Name of file where the Catalog object is serialized (.dat and .xml) -->
  32. <add key="Searcharoo_CatalogFilepath" value="D:InetpubCodeProject.comSearcharoo7WebApplication"/>
  33.     <add key="Searcharoo_CatalogFilename" value="z_searcharoo.dat"/>
  34.     <add key="Searcharoo_TempFilepath" value="D:InetpubCodeProject.comSearcharoo7WebApplicationTemp"/>
  35. <!-- Number of result links to include per page -->
  36. <add key="Searcharoo_DefaultResultsPerPage" value="10"/>
  37. <!-- Language to use when none is supplied (or supplied language is not available) -->
  38. <add key="Searcharoo_DefaultLanguage" value="en-US"/>
  39.     <!-- Used within an Html comment (no spaces) to exclude part of an Html page indexing -->
  40.     <add key="Searcharoo_IgnoreRegionTagNoIndex" value="SEARCHAROONOINDEX"/>
  41.     <!-- Used within an Html comment (no spaces) to exclude part of an Html page from having links followed-->
  42.     <add key="Searcharoo_IgnoreRegionTagNoFollow" value="SEARCHAROONOFOLLOW"/>
  43.     <!-- Set this to FALSE if you are indexing any language other than English (ie. your content has characters that are not ASCII) -->
  44.     <add key="Searcharoo_AssumeAllWordsAreEnglish" value="true"/>
  45.     <!-- Whether Medium Trust has been specified (either below, or in a machine.config file on your hosting provider) -->
  46.     <add key="Searcharoo_InMediumTrust" value="True"/>
  47.     
  48.     <!-- Default document filename: served in folder roots [v7] -->
  49.     <add key="Searcharoo_DefaultDocument" value="default.aspx"/>
  50.   </appSettings>
  51. </configuration>