在 Luke 中对 Lucene 文档进行排序
我想在 luke 中启动查询 luncene 索引文档。我想在获取结果之前对其进行排序。对数据进行排序的 lucene 语法是什么?我不需要 java/or-特定语言的代码来排序;而是使用原始 lucene 语法来对数据进行排序?
谁能给我一个按 2 个字段降序排序的示例?
干杯
I want to fire up a query in luke for luncene indexed document. I want to sort the results before they are fetched. What is the lucene syntax to sort the data. I don't need java/or-language-specific code to sort; instead raw lucene syntax to sort the data?
Can anyone give me a sample example for sorting by 2 fields in descending order?
Cheers
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Lucene 查询没有排序语法。如果需要排序,则必须在 lucene 实现中使用 Sort 对象
Lucene queries don't have a sort syntax. You have to use the Sort object in your implementation of lucene if you need to sort