如何在SOLR中找到版权符号(©)

How to find in SOLR copyright symbol (©)

我在 Solr (v 6.3) 中有 20 ml 文档。我从 pdf 文件中索引了它(使用 Apache Tika) 我需要找到内容中带有版权符号 (©) 的所有文档。 但是,Solr 从查询字符串中删除这个符号: 查询:

但是 solr 已经索引了带有版权符号的文件:

有什么想法吗?

原始查询解析器

RawQParser extends the QParserPlugin by creating a term query from the input value without any text analysis or transformation. This is useful in debugging, or when raw terms are returned from the terms component (this is not the default). The only parameter is f, which defines the field to search.

示例:

 {!raw f=myfield}©

它将return所有包含版权符号的结果。