SOLR -我有状态关键字值作为OR,但当我搜索它时,Solr将其视为OR运算符

hmmo2u0o  于 2022-11-05  发布在  Solr
关注(0)|答案(1)|浏览(172)
http://localhost:8000/solr/testwork/select?q=state:'OR'&wt=json&indent=on

结果:

{
  "responseHeader":{
    "status":0,
    "QTime":0,
    "params":{
      "q":"state:'OR'",
      "indent":"on",
      "wt":"json"}},
  "response":{"numFound":0,"start":0,"numFoundExact":true,"docs":[]
  }}
f3temu5u

f3temu5u1#

如果您的值与运算符相同,请在后面加上\。例如:如果您的查询是空的,请使用下面的命令。

相关问题