从 lucene 查询中获取术语计数

发布于 2024-11-10 09:50:20 字数 214 浏览 4 评论 0原文

我希望能够找到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枉心 2024-11-17 09:50:20

现在我正在为我们正在使用的框架做类似的事情。

我在这里收集了一些描述问题和解决方案的资源:
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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文