autocomplete only first word

(from github.com/freestyle68)
Why autocomplete suggest only first word?

After inserted the first word, the next words never are suggested.

Should I change mapping of suggest index?

(from github.com/marevol)
We could not reproduce it.
Need more info…

(from github.com/freestyle68)
browser locale settings: US ENG

Go to http://search.n2sm.co.jp

and search for

“commercial” and then start to digit “sup”.

There are 2588 results for the query

commercial support

but support is never suggested.

Perhaps it happens because of stemming? (the word “commercial” is never suggested as a single word because of stemming).

I also tried with

support fess but fess is never suggested. In this case the word “support” is suggested.

(from github.com/marevol)
This issue has 2 problem:

  • multiple suggest words
  • stemming

For multiple suggest words, suggest words are generated from:

  • Crawled contents: multiple words are NOT supported.
  • Search logs: multiple words are supported.
  • Admin page: multiple words are supported.

So, if several users search by “commercial support”, it will be displayed.

For stemming, it will be fixed in next release…

(from marevol (Shinsuke Sugaya) · GitHub)

For stemming, it will be fixed in next release…

Fess suggest does not apply stemming.
commerci is in crawled documents.
Missing “commercial” seems to be from other causes…

(from freestyle68 (Freestyle) · GitHub)

Crawled contents: multiple words are NOT supported.

hope to see in the future because this is a must have for a search engine (also with “did you mean?”).

Thank you very much for your effort.