solr suggester not returning any results

前端 未结 3 948
萌比男神i
萌比男神i 2020-12-08 15:09

I\'ve followed the solr wiki article for suggester almost to the T here: http://wiki.apache.org/solr/Suggester. I have the following xml in my solrconfig.xml:



        
3条回答
  •  南笙
    南笙 (楼主)
    2020-12-08 15:43

    Could the problem be that you're querying /suggest instead of /spell

    ../suggest/?q=barbequ

    In my setup this the string I pass in:

    /solr/spell?q=barbequ&spellcheck=true&spellcheck.collate=true

    And the first time you do a spellcheck you need to include

    &spellcheck.build=true

    I'm running on solr 4 btw. So, perhaps /suggest is an entirely different endpoint that does something else. If so, apologize.

提交回复
热议问题