When i use the "french" analyzer on words containing double letter i got as result a work without the double letter. Is it normal? The index is built with the same analyzer but
Request:
{"analyzer":"french","text":["Village"],"tokenizer":"edge_ngram"}
Response:
{"tokens":[{"token":"vilag","start_offset":0,"end_offset":7,"type":"","position":0}]}
If the "italian" analyzer is used the result is
Request:
{"analyzer":"italian","text":["Village"],"tokenizer":"edge_ngram"}
Response:
{"tokens":[{"token":"villag","start_offset":0,"end_offset":7,"type":"","position":0}]}