Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 solr 中使用引号进行搜索?
转义特殊字符
Lucene 支持对属于查询语法一部分的特殊字符进行转义。当前列表特殊字符是
+ - && || ! ( ) { } [ ] ^ " ~ * ? : \
要转义这些字符,请在字符前使用 \。例如,要搜索 (1+1):2,请使用以下查询:
\(1\+1\)\:2