Re: Best approach to multiple languages

2013-12-02 Thread aniljayanti
Hi thanks for you post. I am searching for this type of multiple language indexing and searching in solr. Below is my post in lecene. Can you please help me out of this. http://lucene.472066.n3.nabble.com/Indexing-Multiple-Languages-with-solr-Arabic-amp-English-td4104580.html thanks in advance,

Re: Best approach to multiple languages

2009-07-23 Thread Andrew McCombe
Hi Thanks for posting this. Helps a lot with my application. Andrew 2009/7/22 Ed Summers > On Wed, Jul 22, 2009 at 11:35 AM, Grant Ingersoll > wrote: > >> My initial thoughts are to index each description as a separate field > and > >> append the language identifier to the field name, for exam

Re: Best approach to multiple languages

2009-07-22 Thread Grant Ingersoll
Typically there are three options that people do: 1. Put 'em all in one big field 2. Split Fields (as you and others have described) - not sure why no one ever splits on documents, which is viable too, but comes with repeated data 3. Split indexes For your case, #1 isn't going to work sinc

Re: Best approach to multiple languages

2009-07-22 Thread Olivier Dobberkau
Am 22.07.2009 um 18:31 schrieb Ed Summers: In case you are curious I've attached a copy of our schema.xml to give you an idea of what we did. Thanks for sharing! -- Olivier Dobberkau

Re: Best approach to multiple languages

2009-07-22 Thread Andrew McCombe
Hi We will know the user's language choice before searching. Regards Andrew 2009/7/22 Grant Ingersoll > How do you want to search those descriptions? Do you know the query > language going in? > > > On Jul 22, 2009, at 6:12 AM, Andrew McCombe wrote: > > Hi >> >> We have a dataset that conta

Re: Best approach to multiple languages

2009-07-22 Thread Ed Summers
On Wed, Jul 22, 2009 at 11:35 AM, Grant Ingersoll wrote: >> My initial thoughts are to index each description as a separate field and >> append the language identifier to the field name, for example, three >> fields >> with description_en, description_de, descrtiption_fr.  Is this the best >> appro

Re: Best approach to multiple languages

2009-07-22 Thread Grant Ingersoll
How do you want to search those descriptions? Do you know the query language going in? On Jul 22, 2009, at 6:12 AM, Andrew McCombe wrote: Hi We have a dataset that contains productname, category and descriptions. The descriptions can be in one or more different languages. What would b

Re: Best approach to multiple languages

2009-07-22 Thread Julian Davchev
Hi, We have such case...we don't want to search in all of those languages at once but just one of them. So we took the approach of different indexes for each language. From what I know it helps not breaking relevance of the stats as well. You know, how much an index is used etc etc. If you dig in