如何在 sunspot/solr 全文搜索中转义非法字符?

发布于 2024-11-29 10:42:01 字数 366 浏览 1 评论 0原文

我有一个用于全文搜索模型属性的 sunspot/solr 设置。我的 QA 刚刚搜索了 " 和 +,这两个错误都导致了 500 错误:

Solr 响应:orgapachelucenequeryParserParseException_Cannot_parse__Encountered_EOF_at_line_1_column_0_Was_expecting_one_of_____NOT_________________________QUOTED__TERM__PREFIXTERM__WILDTERM__________________NUMBER__TERM________

如何我使这些查询字符串安全吗?Sunspot 中有方法可以处理这个问题吗?

I have a sunspot/solr setup for fulltext searching model attributes. My QA just searched on " and +, both of which caused a 500 error:

Solr Response: orgapachelucenequeryParserParseException_Cannot_parse__Encountered_EOF_at_line_1_column_0_Was_expecting_one_of_____NOT______________________________QUOTED______TERM______PREFIXTERM______WILDTERM__________________NUMBER______TERM____________

How can I make these query strings safe? Is there a method in Sunspot to handle this?

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

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

发布评论

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

评论(1

套路撩心 2024-12-06 10:42:01

Sunspot 中没有方法来过滤这些,因为它们在某些类型的 Lucene 查询中是有效的。 Sunspot 默认使用 DisMax 查询解析器,因此您可以阅读其文档以了解更多信息关于那些角色。

[DisMax] 旨在支持用户提供的原始输入字符串,无需特殊逃亡。 “+”和“-”字符被视为后续术语的“强制”和“禁止”修饰符。用平衡引号字符 '"' 括起来的文本被视为短语 [...]

如果您打算永远不使用这些字符,您可以自己从查询中过滤它们(反斜杠是为了转义减号)。

Post.search do
  keywords params[:q].gsub(/[+\-"]/,'')
end

您可能希望将其包裹在如果您在控制器中调用 Sunspot 的 search 方法,则为控制器方法;如果您从类自己的自定义中调用 Sunspot 的 solr_search 方法,则为模型方法搜索方法。

There is no method in Sunspot to filter those, because they are valid in certain kinds of Lucene queries. Sunspot is using the DisMax Query Parser by default, so you can read its documentation to learn more about those characters.

[DisMax] is designed to be support raw input strings provided by users with no special escaping. '+' and '-' characters are treated as "mandatory" and "prohibited" modifiers for the subsequent terms. Text wrapped in balanced quote characters '"' are treated as phrases […]

If you intend to never use those characters, you can filter them yourself from queries(the back slash is to escape minus sign).

Post.search do
  keywords params[:q].gsub(/[+\-"]/,'')
end

You may want to wrap that in a controller method, if you're invoking Sunspot's search method within a controller, or a model method if you're calling Sunspot's solr_search method from within your class's own custom search method.

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