the following request
http://127.0.0.1:8983/solr/vault/suggest?wt=json&q=at%20l


Returns phrases that starts with at and with l (as shown below )
Now, what if I want phrases that starts with "At l" such as "At Least..."
Thanks.


{

   - responseHeader:
   {
      - status: 0,
      - QTime: 1
      },
   - spellcheck:
   {
      - suggestions:
      [
         - "at",
         -
         {
            - numFound: 1,
            - startOffset: 1,
            - endOffset: 3,
            - suggestion:
            [
               - "atrion"
               ]
            },
         - "l",
         -
         {
            - numFound: 2,
            - startOffset: 4,
            - endOffset: 5,
            - suggestion:
            [
               - "lot",
               - "loadtest_template_700"
               ]
            },
         - "collation",
         - ""atrion lot""
         ]
      }

}

Reply via email to