Re: Multi-language solr1.3 what would you reckon?

2008-10-15 Thread sunnyfr
, -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19974618.html Sent from the Solr - User mailing list archive at Nabble.com. Solr1.3 MultiCore Scenario core0 (french)core1 (english

Re: Multi-language solr1.3 what would you reckon?

2008-10-15 Thread sunnyfr
|-- id |-- id -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19990348.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multi-language solr1.3 what would you reckon?

2008-10-15 Thread Hannes Carl Meyer
, -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19974618.html Sent from the Solr - User mailing list archive at Nabble.com. Solr1.3 MultiCore Scenario core0 (french)core1 (english

Re: Multi-language solr1.3 what would you reckon?

2008-10-15 Thread sunnyfr
motor, I would like your advice about what have I done. Solr1.3 tomcat55 http://www.nabble.com/file/p19954805/schema.xml schema.xml Thanks a lot, -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon

Re: Multi-language solr1.3 what would you reckon?

2008-10-15 Thread Hannes Carl Meyer
in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19974618.html Sent from the Solr - User mailing list archive at Nabble.com. Solr1.3 MultiCore Scenario core0 (french)core1 (english) ... core8 (russian) |schema.xml

Re: Multi-language solr1.3 what would you reckon?

2008-10-14 Thread sunnyfr
://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19956421.html Sent from the Solr - User mailing list archive at Nabble.com. -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19970307.html Sent from

Re: Multi-language solr1.3 what would you reckon?

2008-10-14 Thread sunnyfr
: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19974618.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multi-language solr1.3 what would you reckon?

2008-10-14 Thread Hannes Carl Meyer
tomcat55 http://www.nabble.com/file/p19954805/schema.xml schema.xml Thanks a lot, -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19974618.html Sent from the Solr - User mailing list archive at Nabble.com

Re: Multi-language solr1.3 what would you reckon?

2008-10-14 Thread Hannes Carl Meyer
about the multiindex-feature ? I know http://wiki.apache.org/solr/MultipleIndexes but there is not enough info :-( Greets -Ralf- -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19956421.html Sent

Multi-language solr1.3 what would you reckon?

2008-10-13 Thread sunnyfr
Hi, I would like to manage properly multi language search motor, I would like your advice about what have I done. Solr1.3 tomcat55 http://www.nabble.com/file/p19954805/schema.xml schema.xml Thanks a lot, -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread Hannes Carl Meyer
motor, I would like your advice about what have I done. Solr1.3 tomcat55 http://www.nabble.com/file/p19954805/schema.xml schema.xml Thanks a lot, -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19954805.html Sent from the Solr

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread John E. McBride
Fairly nebulous requirements, but I recently was involved in a multilingual search platform. The approach, translated to solr 1.3 would be to use multicore - one core per geography. Then a schema.xml per core, each with a different language in the porter algorithm, stopwords etc - taken from

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread sunnyfr
language search motor, I would like your advice about what have I done. Solr1.3 tomcat55 http://www.nabble.com/file/p19954805/schema.xml schema.xml Thanks a lot, -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread John E. McBride
Well, it's this section shown below, which would change from geography to geography. Parameterise the EnglishPorterFilterFactory and protwords. You could introduce logic in the front end which asks if num results is zero then makes a call to the english language, but it doesn't make logical

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread sunnyfr
, -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19955411.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread Kraus, Ralf | pixelhouse GmbH
Hannes Carl Meyer schrieb: Hi, is it really neccessary to put it all into one index? You could also use the Solr MultiCore/MultipleIndexes feature and seperate by language. Is there a good webpage with infos about the multiindex-feature ? I know http://wiki.apache.org/solr/MultipleIndexes

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread John E. McBride
In your schema you define each field as follows: fieldtype name=text_it class=solr.TextField − analyzer tokenizer class=solr.StandardTokenizerFactory/ filter class=solr.StandardFilterFactory/ filter class=solr.ISOLatin1AccentFilterFactory/ filter class=solr.LowerCaseFilterFactory/ filter

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread Hannes Carl Meyer
Hi Ralf, you should also check on the example inside the Solr 1.3 download package! The management of multiple languages inside multiple indexes really makes sense in terms of configuration efforts (look at your big kahuna configuration file!), performance and gives an additional scalibility

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread sunnyfr
info :-( Greets -Ralf- -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19956421.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread Hannes Carl Meyer
know http://wiki.apache.org/solr/MultipleIndexes but there is not enough info :-( Greets -Ralf- -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19956421.html Sent from the Solr - User mailing list archive

Re: Multi-language solr1.3 what would you reckon?

2008-10-13 Thread sunnyfr
-what-would-you-reckon--tp19954805p19956421.html Sent from the Solr - User mailing list archive at Nabble.com. -- View this message in context: http://www.nabble.com/Multi-language-solr1.3-what-would-you-reckon--tp19954805p19957842.html Sent from the Solr - User mailing list archive