作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我从 Solr 得到以下结果。
{
"responseHeader": {
"status": 0,
"QTime": 1,
"params": {
"sort": "ID DESC",
"indent": "true",
"q": "*",
"_": "1462775459580",
"wt": "json"
}
},
"response": {
"numFound": 10,
"start": 0,
"docs": [
{
"Name": "Info",
"AddedOn": "2016-04-19 00:46:10.0",
"BusinessName": "InfoSeffcon",
"ID": "389",
"LatLongCombined": "37.5641425,-122.00417900000002",
"_version_": 1533659952448536600
},
{
"Name": "QA 1 SP",
"AddedOn": "2016-03-20 22:02:16.0",
"ID": "344",
"LatLongCombined": "40.71364869999999,-74.00871259999997",
"_version_": 1533659952447488000
}
}
如何将 field_in_set 的顺序应用于 SOLR 查询。
基本上我想通过 ID 字段获取结果。
例如。如果我指定 ID:344,那么 344 的记录应该先出现,然后是其他记录。我应该得到以下结果:
{
"responseHeader": {
"status": 0,
"QTime": 1,
"params": {
"sort": "ID DESC",
"indent": "true",
"q": "*",
"_": "1462775459580",
"wt": "json"
}
},
"response": {
"numFound": 10,
"start": 0,
"docs": [
{
"Name": "QA 1 SP",
"AddedOn": "2016-03-20 22:02:16.0",
"ID": "344",
"LatLongCombined": "40.71364869999999,-74.00871259999997",
"_version_": 1533659952447488000
},
{
"Name": "Info",
"AddedOn": "2016-04-19 00:46:10.0",
"BusinessName": "InfoSeffcon",
"ID": "389",
"LatLongCombined": "37.5641425,-122.00417900000002",
"_version_": 1533659952448536600
}
}
如何使用 SOLR 实现此目的。我对 SOLR 还很陌生,有人可以帮忙吗!
最佳答案
您可以使用字段进行排序。
id asc
:按“id”字段升序排序
id desc
:按“id”字段的降序排序
Solr Docs :可以对文档的 "score"
或任何 multiValued="false"indexed="true"
字段进行排序,前提是该字段是非标记化的(即:没有 Analyzer
)或使用仅生成单个术语的分析器(即:使用 KeywordTokenizer
)
关于mysql - SOLR像mysql一样按field_in_set排序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37109256/
我正在搜索具有连接表的 MySQL“FIELD_IN_SET()”的等效项。这是我想要做的事情的一个例子。 我有三个表。第一个包含字段“user_id”和“user_name”。第二个包含字段“id”
我有 3 个表: link_art_a link_art_b link_art_c 我现在想在一侧搜索“car”和这个输出。 表格几乎相同,我需要的字段: id, name , mod_name ,
我是一名优秀的程序员,十分优秀!