solr 竞价
Configuration
solrconfig.xml
The query elevation component is configured in solrconfig.xml. A
typical configuration may look like:
<searchComponent name="elevator" class="org.apache.solr.handler.component.QueryElevationComponent" >
<str name="queryFieldType">string</str>
<str name="config-file">elevate.xml</str>
</searchComponent>
<requestHandler name="/elevate" class="solr.SearchHandler">
<lst name="defaults">
<str name="echoParams">explicit</str>
</lst>
<arr name="last-components">
<str>elevator</str>
</arr>
</requestHandler>
Available arguments for the searchComponent are:
queryFieldType
Configure which fieldType should be used to analyze the incoming
text. For example, it may be appropriate to use a fieldType with aLowerCaseFilter.
config-file
Path to the file that defines query elevation. This file must
exist in:
<!---->1. <!---->${instanceDir}/conf/${config-file}
, or
<!---->2. <!---->${dataDir}/${config-file}
If the file exists in the /conf/ directory it will be loaded once
at start-up. If it exists in the data directory, it will be reloaded for eachIndexReader.
forceElevation
By default, this component respects the requested 'sort' parameter
-- that is, if the request asks to sort by date, it will order the results by
date. If forceElevation=true, results will first return the boosted docs, then
order by date.
elevate.xml
Elevated query results are configured in an external .xml file
determined by the config-file argument. An elevate.xml file may look
like this:
<elevate>
<query text="AAA">
<doc id="A" />
<doc id="B" />
</query>
<query text="ipod">
<doc id="A" />
<!-- you can optionally exclude documents from a query result -->
<doc id="B" exclude="true" />
</query>
</elevate>
For the above configuration, the query "AAA" would first
return documents A and B, then whatever normally appears for the same query.
For the query "ipod", it would first return A, and would make sure
that B is not in the result set.
Usage
All standard solr features such as faceting, sorting, and
MoreLikeThis work with this component installed.
enableElevation
For debugging it may be useful to see results with and without the
elevated docs. To hide results use "enableElevation=false", like
this:
<!---->·
<!----><!--><v:shapetype
id="_x0000_t75" coordsize="21600,21600" o:spt="75" o:preferrelative="t"
path="m@4@5l@4@11@9@11@9@5xe" filled="f" stroked="f">
<v:stroke joinstyle="miter" />
<v:formulas>
<v:f eqn="if lineDrawn pixelLineWidth 0" />
<v:f eqn="sum @0 1 0" />
<v:f eqn="sum 0 0 @1" />
<v:f eqn="prod @2 1 2" />
<v:f eqn="prod @3 21600 pixelWidth" />
<v:f eqn="prod @3 21600 pixelHeight" />
<v:f eqn="sum @0 0 1" />
<v:f eqn="prod @6 1 2" />
<v:f eqn="prod @7 21600 pixelWidth" />
<v:f eqn="sum @8 21600 0" />
<v:f eqn="prod @7 21600 pixelHeight" />
<v:f eqn="sum @10 21600 0" />
</v:formulas>
<v:path o:extrusionok="f" gradientshapeok="t" o:connecttype="rect" />
<o:lock v:ext="edit" aspectratio="t" />
</v:shapetype><v:shape id="_x0000_i1025" type="#_x0000_t75" alt=""
style='width:8.25pt;height:8.25pt' o:button="t">
<v:imagedata src="file:///C:\DOCUME~1\jongo\LOCALS~1\Temp\msohtml1\01\clip_image001.gif"
o:href="http://wiki.apache.org/wiki/classic/img/moin-www.png" />
</v:shape><!--><!---->http://onexin.iyunv.com/source/plugin/onexin_bigdata/file:///C:DOCUME~1jongoLOCALS~1Tempmsohtml11clip_image001.gif<!----> http://localhost:8983/solr/elevate?q=YYYY&debugQuery=true&enableElevation=false
fq
Query elevation respects the standard "filter query"
(fq) parameter. That is, if the query contains a fq parameter, all results will
be within that filter even if elevate.xml adds other documents to the result
set.
页:
[1]