solr,查找给定术语的前面的尾随/术语

发布于 2024-12-01 11:44:47 字数 75 浏览 0 评论 0原文

SOLR 中是否有一种方法,可以使用 termquery、searchquery 或其他魔法来查找给定术语 x 的最前面(或尾随)术语?

Is there a way in SOLR, with termquery, searchquery or other magic, to find the most preceding (or trailing) terms, for a given term x?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

诗笺 2024-12-08 11:44:47

如果我理解正确,你想要做这样的事情:

索引数据:“Jack 爬上了山”

如果你搜索“climbed”,你想知道“Jack”和“up”在前面,并且跟踪您搜索的术语?

看来你可以通过打开突出显示来基本做到这一点,然后在你的模式上,不要词干(你可以词干,但它不会突出显示),然后处理每个有突出显示的结果来找出术语你正在寻找。

If I'm understanding you correctly you're wanting to do something like this:

Indexed data: "Jack climbed up the hill"

If you search for "climbed", you want to know that "Jack" and "up" are preceding and trailing the term you searched for?

It seems like you could rudimentarily do this by turning on highlighting, and then on your schema, don't stem (well you can stem but it's not going to highlight), and then process each result that has a highlight to figure out the terms you're looking for.

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