I have the following search_analyzer:

settings -->    "whitespace_analyzer": {
                            "type": "custom",
                            "tokenizer": "whitespace",
                            "filter": [
                                "lowercase",
                                "asciifolding"
                            ]
                        }
mapping -->
*"index_analyzer" : "whitespace_analyzer",*
*"search_analyzer" : "whitespace_analyzer",*


I have inserted a single doc "Calfornia World"
Following is the search result:

1. "Cali" --> matches correctly and returns the doc
2. "Wor" --> matches correctly and returns the doc
*3. "Cali Wor" --> DOES NOT matches correctly and doc is not returned. --> 
This is the problem. This text should return this doc.*

Does anyone know whats wrong ?

Thanks

-- 
You received this message because you are subscribed to the Google Groups 
"elasticsearch" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/elasticsearch/2be8f2ba-2729-4959-ad24-eca3fd5b2a15%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to