Re: Multilingual search with Haystack

2014-08-19 Thread Simon Bächler
It's not that simple. When using a search server you should have a separate index per language. Search server are processing text to improve indexing such as saving only the stem of a verb or removing plurals. This is highly language specific. The main problem is therefore the schema creation a

Re: Multilingual search with Haystack

2014-08-17 Thread Collin Anderson
Could you simply have a field to record the language, and then filter by that language when searching? -- You received this message because you are subscribed to the Google Groups "Django users" group. To unsubscribe from this group and stop receiving emails from it, send an email to django-us

Multilingual search with Haystack

2014-08-17 Thread Simon Bächler
Hi I need to set up a search server for our production servers. Each production server has multiple Django instances and every instance has multiple languages. As a search backend I'm leaning towards Elasticsearch because it is easier to add new sites to the index. Unfortunately Haystack asso