zoukankan      html  css  js  c++  java
  • 【solr专题之二】配置文件:solr.xml solrConfig.xml schema.xml


    1、关于默认搜索域

    If you are using the Lucene query parser, queries that don't specify a field name will use the defaultSearchField. The DisMax and Extended DisMax query parsers do not use this value. 

    Use of the defaultSearchField element is deprecated in Solr versions 3.6 and higher. Instead, you should use the df request parameter. At some point, the defaultSearchField element may be removed。
    即使用solrConfig中的df属性代替schema中的defaultSearchField。

    2、关于qf

    从solr的example中得到的solrConfig.xml中,qf的定义如下:
           <str name="qf">
              text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
              title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0
           </str>
    由于content不占任何的权重,因此如果某个文档只在content中包含关键字的话,搜索结果并不会返回这个文档。因此,对于nutch提取的索引来说,要增加content的权重,以及url的权重(如果需要的话):
           <str name="qf">
              content^1.0 text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4
              title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0
           </str>


    二、Search Handler


    [html] view plaincopy在CODE上查看代码片派生到我的代码片
    1. <requestHandler name="/browse" class="solr.SearchHandler">  
    2.     <lst name="defaults">  
    3.       <str name="echoParams">explicit</str>  
    4.   
    5.       <!-- VelocityResponseWriter settings -->  
    6.       <str name="wt">velocity</str>  
    7.       <str name="v.template">browse</str>  
    8.       <str name="v.layout">layout</str>  
    9.       <str name="title">Solritas_test</str>  
    10.   
    11.       <!-- Query settings -->  
    12.       <str name="defType">edismax</str>  
    13.       <str name="qf">  
    14.          text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4  
    15.          title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0  
    16.       </str>  
    17.       <str name="df">content</str>  
    18.       <str name="mm">100%</str>  
    19.       <str name="q.alt">*:*</str>  
    20.       <str name="rows">10</str>  
    21.       <str name="fl">*,score</str>  
    22.       <!--more like this setting-->  
    23.       <str name="mlt.qf">  
    24.         text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4  
    25.         title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0  
    26.       </str>  
    27.       <str name="mlt.fl">text,features,name,sku,id,manu,cat,title,description,keywords,author,resourcename</str>  
    28.       <int name="mlt.count">3</int>  
    29.   
    30.       <!-- Faceting defaults -->  
    31.       <str name="facet">on</str>  
    32.       <str name="facet.field">cat</str>  
    33.       <str name="facet.field">manu_exact</str>  
    34.       <str name="facet.field">content_type</str>  
    35.       <str name="facet.field">author_s</str>  
    36.       <str name="facet.query">ipod</str>  
    37.       <str name="facet.query">GB</str>  
    38.       <str name="facet.mincount">1</str>  
    39.       <str name="facet.pivot">cat,inStock</str>  
    40.       <str name="facet.range.other">after</str>  
    41.       <str name="facet.range">price</str>  
    42.       <int name="f.price.facet.range.start">0</int>  
    43.       <int name="f.price.facet.range.end">600</int>  
    44.       <int name="f.price.facet.range.gap">50</int>  
    45.       <str name="facet.range">popularity</str>  
    46.       <int name="f.popularity.facet.range.start">0</int>  
    47.       <int name="f.popularity.facet.range.end">10</int>  
    48.       <int name="f.popularity.facet.range.gap">3</int>  
    49.       <str name="facet.range">manufacturedate_dt</str>  
    50.       <str name="f.manufacturedate_dt.facet.range.start">NOW/YEAR-10YEARS</str>  
    51.       <str name="f.manufacturedate_dt.facet.range.end">NOW</str>  
    52.       <str name="f.manufacturedate_dt.facet.range.gap">+1YEAR</str>  
    53.       <str name="f.manufacturedate_dt.facet.range.other">before</str>  
    54.       <str name="f.manufacturedate_dt.facet.range.other">after</str>  
    55.   
    56.       <!-- Highlighting defaults -->  
    57.       <str name="hl">on</str>  
    58.       <str name="hl.fl">content features title name</str>  
    59.       <str name="hl.encoder">html</str>  
    60.       <str name="hl.simple.pre"></str>  
    61.       <str name="hl.simple.post"></str>  
    62.       <str name="f.title.hl.fragsize">0</str>  
    63.       <str name="f.title.hl.alternateField">title</str>  
    64.       <str name="f.name.hl.fragsize">0</str>  
    65.       <str name="f.name.hl.alternateField">name</str>  
    66.       <str name="f.content.hl.snippets">3</str>  
    67.       <str name="f.content.hl.fragsize">200</str>  
    68.       <str name="f.content.hl.alternateField">content</str>  
    69.       <str name="f.content.hl.maxAlternateFieldLength">750</str>  
    70.   
    71.       <!-- Spell checking defaults -->  
    72.       <str name="spellcheck">on</str>  
    73.       <str name="spellcheck.extendedResults">false</str>         
    74.       <str name="spellcheck.count">5</str>  
    75.       <str name="spellcheck.alternativeTermCount">2</str>  
    76.       <str name="spellcheck.maxResultsForSuggest">5</str>         
    77.       <str name="spellcheck.collate">true</str>  
    78.       <str name="spellcheck.collateExtendedResults">true</str>    
    79.       <str name="spellcheck.maxCollationTries">5</str>  
    80.       <str name="spellcheck.maxCollations">3</str>             
    81.     </lst>  
    82.   
    83.     <!-- append spellchecking to our list of components -->  
    84.     <arr name="last-components">  
    85.       <str>spellcheck</str>  
    86.     </arr>  
    87.  </requestHandler>  


    1、SearchHandler是reqestHandler中的一种,它以requestHandler作为顶层元素。

    2、二级元素包括first-components,  last-components, defautls等。

    3、Velocity的配置

    [html] view plaincopy在CODE上查看代码片派生到我的代码片
    1. <!-- VelocityResponseWriter settings -->  
    2. <str name="wt">velocity</str>  
    3. <str name="v.template">browse</str>  
    4. <str name="v.layout">layout</str>  
    5. <str name="title">Solritas_test</str>  
    wt:指定返回搜索结果的格式

    • v.template: template name to use, without the .vm suffix. If not specified, "default"[.vm] will be used.

    • v.template.<name>: overrides a file system template

    • debugQuery: if true, default view displays explanations for each hit and additional debugging information in the footer.

    • v.json: Escapes and wraps Velocity generated response with v.json parameter as a JavaScript function.

    • v.layout: Template name that wraps main template (v.template). Main template renders to a $content that can be used in layout template.

    • v.base_dir: overwrites default template load path (conf/velocity/).

    • v.properties: specifies a Velocity properties file to be applied, found using the Solr resource loader mechanism. If not specified, no .properties file is loaded. Example: v.properties=velocity.properties where velocity.properties can be found using Solr's resource loader mechanism, for example in the conf/ directory (not conf/velocity which is for templates only). The .properties file could also be located inside a JAR in the lib/ directory, or other locations.

    • v.contentType: sets the value of the HTTP response's Content-Type header (in case (x)html pages should be UTF-8 (instead of ISO-8859-1) encoded, make sure you set this option to text/xml;charset=UTF-8 (for XHTML) and text/html;charset=UTF-8 (for HTML), respectively)


    velocity的其余配置参考:http://blog.csdn.net/jediael_lu/article/details/38039267。

    4、搜索域qf

    [html] view plaincopy在CODE上查看代码片派生到我的代码片
    1. <str name="qf">  
    2.    text^0.5 features^1.0 name^1.2 sku^1.5 id^10.0 manu^1.1 cat^1.4  
    3.    title^10.0 description^5.0 keywords^5.0 author^2.0 resourcename^1.0  
    4. </str>  
    定义了从哪些域进行搜索,以及各个域之间的权重。


    5、QueryParser的选择 defType,常用efType=lucene, defType=edismax

    [html] view plaincopy在CODE上查看代码片派生到我的代码片
    1. <str name="defType">edismax</str>  


    6、默认搜索域:df

    若无指定搜索域,则此域作为默认的搜索域。

    df/qf/defaultSearchField比较:

    (1)使用solrConfig中的df属性代替schema中的defaultSearchField。

    (2)df is the default field and will only take effect if the qf is not defined.

    7、默认的query

    [html] view plaincopy在CODE上查看代码片派生到我的代码片
    1. <str name="q.alt">*:*</str>  

    q.alt: 当q字段为空时,用于设置缺省的query,通常设置q.alt为*:*。


    8、 mm:minimal should match。Solr支持三种查询clause,即“必须出现”, “不能出现”和“可以出现”,分别对应于AND, -, OR。

    [html] view plaincopy在CODE上查看代码片派生到我的代码片
    1. <str name="mm">100%</str>  


    When dealing with queries there are 3 types of "clauses" that Lucene knows about: mandatory, prohibited, and 'optional' (aka: "SHOULD") By default all words or phrases specified in the "q" param are treated as "optional" clauses unless they are preceeded by a "+" or a "-". When dealing with these "optional" clauses, the "mm" option makes it possible to say that a certain minimum number of those clauses must match (mm). Specifying this minimum number can be done in complex ways, equating to ideas like...

    • At least 2 of the optional clauses must match, regardless of how many clauses there are: "2"

    • At least 75% of the optional clauses must match, rounded down: "75%"

    • If there are less than 3 optional clauses, they all must match; if there are 3 or more, then 75% must match, rounded up: "2<-25%"

    • If there are less than 3 optional clauses, they all must match; for 3 to 5 clauses, one less than the number of clauses must match, for 6 or more clauses, 80% must match, rounded down: "2<-1 5<80%"

    Full details on the variety of complex expressions supported are explained in detail here.

    In Solr 1.4 and prior, you should basically set mm=0 if you want the equivilent of q.op=OR, and mm=100% if you want the equivilent of q.op=AND. In 3.x and trunk the default value of mm is dictated by the q.op param (q.op=AND => mm=100%; q.op=OR => mm=0%). Keep in mind the default operator is effected by your schema.xml <solrQueryParser defaultOperator="xxx"/> entry. In older versions of Solr the default value is 100% (all clauses must match)

    9、每页返回的行数

    [html] view plaincopy在CODE上查看代码片派生到我的代码片
    1. <str name="rows">10</str>  

    10、返回Field的集合

    [html] view plaincopy在CODE上查看代码片派生到我的代码片
    1. <str name="fl">*,score</str>  

    fl: 是逗号分隔的列表,用来指定文档结果中应返回的 Field 集。默认为 “*”,指所有的字段。以上即返回所有域,而加上score。


    11、对返回结果排序

    (1)排序的字段必须是index=true

    (2)<str name="sort">tstamp asc</str> 

    若此元素放在<default>中,则指定默认元素,query时可以改变。

    若放在<invariant>中,则在query中也不可以改变。

    这应该对其它元素同样适用。

    参考:http://stackoverflow.com/questions/24966924/how-to-change-the-default-rank-field-from-score-to-other-filed-in-solr/24971353#24971353



  • 相关阅读:
    C#验证码识别类网上摘抄的
    C#如何用WebClient动态提交文件至Web服务器和设定Http响应超时时间
    C#制作曲线图源码
    在PHP中怎样实现文件下载?
    ASP.NET如何调用Web Service
    MSDN中关于读取web.config的那块,System.Configuration.ConfigurationManager.ConnectionStrings["NorthwindConnectionString"].ConnectionString
    饿也要做一个和这个差不多的blog,但功能上有要增强的
    理解能力的高低决定人们的学习能力的高低
    有点困惑了,不知道是从smartClient入手还是从做网站web入手学习.net技术
    什么工厂模式?反射, 晕了,有书吗,推荐推荐.....5555555555555
  • 原文地址:https://www.cnblogs.com/eaglegeek/p/4557878.html
Copyright © 2011-2022 走看看