gpt4 book ai didi

Solr 排序似乎不起作用

转载 作者:行者123 更新时间:2023-12-02 22:18:51 28 4
gpt4 key购买 nike

我一直在搜索这个,但是我所做的一切似乎都不起作用,我试过了,

cat: wolf; category desc
cat: wolf; sort category desc
$query->setQuery("cat: wolf")->sort("category desc");

我无法对结果进行排序,我不知道该怎么做。

最佳答案

排序在多值和标记化字段上效果不佳。

Documentation

Sorting can be done on the "score" of the document, or on any multiValued="false" indexed="true" field provided that field is either non-tokenized (ie: has no Analyzer) or uses an Analyzer that only produces a single Term (ie: uses the KeywordTokenizer)

使用字符串作为字段类型(或应用小写过滤器和 ascii 过滤器的 KeywordTokenizer)并将类别字段复制到新字段中。

<field name="category_sort" type="string" indexed="true" stored="false"/>

<copyField source="category" dest="category_sort" />

关于Solr 排序似乎不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14035043/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com