Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm building a search engine for a website where users can be of many different countries and post text content.

I'll consider that: - A french generates content in french and english - A german generates content in german and english etc...

What i'd like to know if it is possible to make a search using different snowball stemmer langages in the same time, so that we have appropriate results in the same time.

Do we have to create one index per snowball stemmer langage?

Is there a known pattern for such a case?

Thanks

share|improve this question
Not sure I understand what you want here. You are trying to search multiple languages with a single query... and return mixed results (results in multiple languages)? – Kenneth Ito Jun 15 '12 at 0:28
yes, on a single search field, i'd like to be able to retrieve documents in multiple languages (basically 2, the user country language, and english) – Sebastien Lorber Jun 15 '12 at 8:12

3 Answers

So quick disclaimer, I'm not an expert in stemming/language morphology but since noone else is responding, here's my understanding. Also, most of my experience is along the lines of solr.

In order to be able to query with stemming against multiple languages with a single, mixed result set, you need to use a multilingual stemmer. I'm not sure what is available for elastisearch.

Trying to apply multiple stemmers designed for single languages to a single index will step on each other's toes and likely not produce expected results (stemming rules vary significantly depending on the language).

Having an index per language with respective stemmers works for queries with single language results. Trying to combine results from multiple queries against multiple indices is usually fairly problematic (you have to attempt to normalize relevancy and deal with paging).

share|improve this answer
Thanks. I asked ElasticSearch experts of my company and it seems we can use a multilingual stemmer if the document is able the provide the language to use. But for using 2 stemmers for the same document, i don't know yet. it's not always easy to compute the language of a document thus i wanted to index in multiple languages the same document – Sebastien Lorber Jun 16 '12 at 0:04

You can create 2 separate indices and search on both ( or all ) at the same time. As long as fields of indices are the same you will get valid results.

share|improve this answer
up vote 1 down vote accepted

This new ElasticSearch plugin works fine:

https://github.com/yakaz/elasticsearch-analysis-combo

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.