I would like to know if it is possible to have a whitespace suggester? I worked with the suggester but it only gives tokens results.
Example of what I'm looking for:
Indexed item: b123-456
This gets tokinized as B123 and 456. Now the user is looking for b123456. The search returns 0 results.(if it doesn't return 0 results this should not happen)
Now I would like to have a suggestion that recommends using b123 and 456 seperatly.
It splits the long alphanumeric on serval spots and then looks if a the token exists and if 2 or 3 tokens exist score it even higher.
I could write my own code thats splits the term up, but that would make thousands of queries to get some result.
Is there anything that shows this kind of behaviour?
Maybe if whitespace isn't possible due to the high amount of possibilities a suggester that leaves out special characters like "-","/","."