将通配符查询设置为 QueryParser 的默认值

发布于 2024-09-01 06:59:37 字数 145 浏览 8 评论 0原文

当我的用户输入“word”这样的术语时,我希望将其视为通配符查询“word*”,以便找到以“word”开头的所有术语。有没有办法告诉 QueryParser 自动创建通配符查询,或者我必须自己解析查询?对于简单的查询来说这应该不是问题,但对于更复杂的查询来说可能会变得很棘手。

When my users enter a term like "word" I would like it be treated as a wildcard query "word*" so all terms beginning "word" are found. Is there a way to tell the QueryParser to automatically create wildcard queries or do I have to parse the query myself? This shouldn't be a problem for simple queries but it may become tricky for more complex queries.

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

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

发布评论

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

评论(1

初吻给了烟 2024-09-08 06:59:37

除非我遗漏了一些东西 - 每个查询都使用通配符查询通常是不可取的 - 它非常昂贵并且可能会导致很多问题。如果您尝试查找包含词干变体的结果(例如 win -> Winner、wining 等),您应该考虑使用 n-gram 方法。

Unless I am missing something - a wildcard query for every query is usually inadvisable - it is very expensive and could cause a lot of problems. If you are trying find results including variants of a stem (e.g. win -> winner, winning, etc.) You should consider a n-gram approach.

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