The following is proximity search in SOLR:
"john josh"~12
But what is I wanted to search for josh token being close not to john, but to the expression "john smith"?
Is there a way to make something like this work:
"("john smith") josh"~12
The following is proximity search in SOLR:
"john josh"~12
But what is I wanted to search for josh token being close not to john, but to the expression "john smith"?
Is there a way to make something like this work:
"("john smith") josh"~12
Check these two parsers:
I think the first one should do what you need, and maybe both can.