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.
这是问题所在。
我有一个这样的 solr 查询:
例子:
post_id: ( 31234, 56756, 24352, 78465, 23424 )
我想订购它们,因为它们在查询中。
相当于这个的Mysql是:
ORDER BY FIND_IN_SET(post_id, '31234, 56756, 24352, 78465, 23424')
我正在查看 Solr 排序文档、谷歌搜索等,但什么也没有。是否可以像这样在 Solr 中订购文章?
提前致谢。
如果您相应地增加您的文件,您只能获得这种订单。
例如q=post_id:31234^5 post_id:56756^4 post_id:24352^3......
q=post_id:31234^5 post_id:56756^4 post_id:24352^3