Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Web 请求 URL 中有一个“排序”选项。但是,我如何按两个字段排序?如果我这样做:
sort=field1 asc&sort=field2 desc
只有第一个字段将用于对我的观察进行排序。
你这样做:
sort=field1 asc, field2 desc
SOLR(3.6.2) 但是如果你想对额外的intField和'score'进行排序, 试着搜索而不是:
sort=score desc,intField desc
这个:
sort=intField desc,score desc