从 lucene 查询中获取术语计数
我希望能够找到 lucene 查询中的术语数量。例如,我有两个字段,一个是位置,另一个是类别。如果我运行查询来获取“加利福尼亚州洛杉矶”中的所有文档,那么我希望能够快速查看这些文档的类别。我知道 solr 用分面来做这种事情,但我希望用普通的旧 Lucene 来做这件事。现在我正在循环遍历所有文档 ID,然后使用哈希表来计算术语,但速度非常慢。
一种获得术语但将其限制于我的查询的方法将是理想的。
I want to be able to find counts of terms within a lucene query. For example, I have two fields, one is location and another is category. If I run a query to get all documents in "Los Angeles, CA" I would then want to be able to quickly see for those documents what the categories were. I know solr does this sort of thing with faceting, but I am hoping to do this with plain old Lucene. Right now I am looping through all doc id and then using a hashtable to count up the terms, but it is very slow.
A way to get a termenum but have it restricted to my query would be ideal.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
现在我正在为我们正在使用的框架做类似的事情。
我在这里收集了一些描述问题和解决方案的资源:
http://code.google.com/p/gtxcontentconnector/issues/detail ?id=41
Right now I'm working on something similar for the framework we are using.
I gathered a few ressources describing the problem and the solution here:
http://code.google.com/p/gtxcontentconnector/issues/detail?id=41