English 中文(简体)
这里的`^'是指
原标题:what this `^` mean here in solr

I am confuse her but i want to clear my doubt. I think it is stupid question but i want to know. Use a TokenFilter that outputs two tokens (one original and one lowercased) for each input token. For queries, the client would need to expand any search terms containing upper case characters to two terms, one lowercased and one original. The original search term may be given a boost, although it may not be necessary given that a match on both terms will produce a higher score.

text:NeXT ==> (text:NeXT^10 OR text:next)

what this ^ mean here .

最佳回答

这对NeXT的数值和下方的数值(越重要)给予了推动。 从你与相连的基页起,可以提高原搜索期,但鉴于这两个术语的匹配将产生更高的分点<>。

详情请见。 http://www.lucidimagination.com/blog/201106/01/a-practical-approach-to-boosting-documents-with-solrlucene/“rel=” http://lucenerevolution.org“rel=“nofollow” 今年早些时候举行的卢塞特革命大会也载有关于如何促进工程以及如何将其应用于各种情景的良好信息。

Edit1: For more information on the boost values (the number after the ^), please refer to the following:

Edit2: The value of the boost influences the score/relevancy of an item returned from the search results.

  1. (term:NeXT^10 term:next) - Any documents matching term:NeXT will be scored higher/more relevant in this query because they have a boost value of 10 applied.
  2. (term:NeXT^10 term:Next^5 term:next) - Any documents matching term:NeXT will be scored the highest (because of highest boost value), any documents matching term:Next will be scored lower than term:NeXT, but higher than term:next.
问题回答

暂无回答




相关问题
Drupal search engine does not index my custom nodes!

Somebody has posted an hour ago or so a question that was about the drupal search engine and was about like this: I know drupal should index anything that is returned by node_view() but this is not ...

Enable webpage for IE Search Provider

When we visit Stack Overflow, the IE Instant Search Dropdown button is turning orange indicating that SO can be added as a search provider. What code should I put inside my web page for IE to detect ...

google opensearch plugin ajax drop down

I am making an opensearch plugin to be used as a search engine provider in the browser. http://library.curtin.edu.au/services/toolbar/#searchPlugin As there is no way to specify any ajax call in the ...