Solr 不返回突出显示的结果

Solr not returning highlighted results

我正在使用 nutch 1.15 和 solr 7.3,并且我按照文档进行了搜索突出显示 - https://lucene.apache.org/solr/guide/7_3/highlighting.html

对我来说,nutch solr 搜索的正常查询正在运行并且返回结果: curl http://localhost:8983/solr/nutch/select?q=content:build&wt=json&rows=10000&start=0

通过搜索突出显示查询,我得到了相同的结果,但收到了警告。- hl.q=content:build: not found

带有高亮参数的查询如下 - curl http://localhost:8983/solr/nutch/select?q=content:build&hl=on&hl.q=content:build&wt=json&rows=10000&start=0

查看完整回复 -

$ curl http://localhost:8983/solr/nutch/select?q=content:build&hl=on&hl.q=content:build&wt=json&rows=10000&start=0
-sh: 8: hl.q=content:build: not found
[3]   Done(127)                  hl.q=content:build
[2]   Done                       curl http://localhost:8983/solr/nutch/select?q=content:build
$ {
  "responseHeader":{
    "status":0,
    "QTime":1,
    "params":{
      "q":"content:build"}},
  "response":{"numFound":2,"start":0,"docs":[
      {
        "digest":"ff0d20368525b3a0f14933eddb0809db",
        "boost":1.0151907,
        "id":"https://dummy_url",
        "title":"dummy title",
        "content":"dummy content",
        "_version_":1691148343590256640},
      {
        "digest":"4fd333469ed5d83ad08eaa7ef0b779c4",
        "boost":1.0151907,
        "id":"https://dummy_url1",
        "title":"dummy title1",
        "content":"dummy content1",
        "_version_":1691148343603888128}]
  }}

有人知道如何解决这个问题吗?我在 nutch 和 solr 日志中没有收到任何错误。

您没有运行宁您认为自己运行宁的命令 - & 向 shell 发出命令应该是 [=20] 的信号=]在后台,所以实际上发生的是你运行宁多个命令:

curl http://localhost:8983/solr/nutch/select?q=content:build

hl=on
hl.q=content:build 
wt=json
rows=10000
start=0

这不是你想要做的。您可以将 URL 括在引号内 (") 或转义符号:

curl "http://localhost:8983/solr/nutch/select?q=content:build&hl=on&hl.q=content:build&wt=json&rows=10000&start=0"

# or

curl http://localhost:8983/solr/nutch/select? q=content:build\&hl=on\&hl.q=content:build\&wt=json\&rows=10000\&start=0