Using snowball analyzer

Hi,

How do I add snowball analyzer to search query:

url:

http://localhost:9200/pinterestpin/pin/_search

query:
{

"query": {

"text": {

  "description": {

    "query": "eat"

  }

}

}

}

Thanks,

Ophir

--
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 elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Hi Ophir

How do I add snowball analyzer to search query:

You need to use the snowball analyzer both at index time and at query
time, otherwise the terms that you are searching for won't exist in the
same form in the index.

Have you followed the instructions on this page?

Have a look at those first, then let us know what you have tried and
what isn't working

clint

--
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 elasticsearch+unsubscribe@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.