Add 2 stemmers to a textfield?

2007-07-09 Thread Thierry Collogne
Hello, Our index contains 2 languages : dutch and french. I was wondering if it is possible to add 2 solr.SnowballPorterFilterFactory filters to one text field like this : Also can someone explain to me, why

Re: Facet prefix question

2007-07-09 Thread Chris Hostetter
: Hey there does anyone know how to perform multiple facet prefixes on the same : field. I am using the f..facet.prefix syntax and cannot get an : "OR"ing of faceted results. that's really not possible ... facet.prefix isn't parsed as a query, it's a raw term prefix. can you elaborate on what i

Re: distribution scripts on Solaris

2007-07-09 Thread Bill Au
Thanks. It looks like perl is a standard part of Solaris since Solaris 8. I will use that on Solaris in stead. I have filed a bug on this: https://issues.apache.org/jira/browse/SOLR-294 Bill On 7/9/07, Xuesong Luo <[EMAIL PROTECTED]> wrote: You can use perl to get the sec, an example is: rsy

Re: Processor load

2007-07-09 Thread Michael Thessel
On Wed, 2007-04-07 at 10:37 -0400, Yonik Seeley wrote: > On 7/3/07, Michael Thessel <[EMAIL PROTECTED]> wrote: > > -- > > 208973 SEVERE: Error during auto-warming of > > key:[EMAIL PROTECTED]:java > > 208974 at > > org.apache.lucene.search.ConjunctionSc

RE: distribution scripts on Solaris

2007-07-09 Thread Xuesong Luo
You can use perl to get the sec, an example is: rsyncEndSec=`perl -e "print time;"` -Original Message- From: Bill Au [mailto:[EMAIL PROTECTED] Sent: Monday, July 09, 2007 8:40 AM To: solr-user@lucene.apache.org Subject: distribution scripts on Solaris I am working on bug SOLR-282: htt

RE: distribution scripts on Solaris

2007-07-09 Thread Xuesong Luo
-Original Message- From: Bill Au [mailto:[EMAIL PROTECTED] Sent: Monday, July 09, 2007 8:40 AM To: solr-user@lucene.apache.org Subject: distribution scripts on Solaris I am working on bug SOLR-282: https://issues.apache.org/jira/browse/SOLR-282 and noticed that the code in the scripts

Re: useCompoundFile, mergeFactor & index replication

2007-07-09 Thread Otis Gospodnetic
Using the compound index format will, I imagine, result in fewer and larger files being sent over the wire during replication. I would stay with the multi-file index format and increase the max number of open files via ulimit or sysctl (Linux, at least). Otis -- Lucene Consulting -- http://lucen

useCompoundFile, mergeFactor & index replication

2007-07-09 Thread James Jory
I am working with a pre-production Solr installation using a single master and 4 search slaves. The index will eventually contain ~20M documents. There are about 25 fields in the index but only a few "integer" and small "string" fields actually have their data stored in the index. The index is

Facet prefix question

2007-07-09 Thread Robert Purdy
Hey there does anyone know how to perform multiple facet prefixes on the same field. I am using the f..facet.prefix syntax and cannot get an "OR"ing of faceted results. Thanks Robert. -- View this message in context: http://www.nabble.com/Facet-prefix-question-tf4052754.html#a11511601 Sent fro

Re: Problem with Russian stemmer in Solr 1.2

2007-07-09 Thread Andrew Stromnov
Hi, Daniel Stemmer in RussianAnalyser works as expected. But this analyser doesn't allow any Solr customization. All stopwords are hardcoded, no support for custom tokenizer, no synonym support. RussianAnalyser is similar to this scheme: standard tokenizer standard filter factory word deli

Re: Spell Check Handler

2007-07-09 Thread Charles Hornberger
For what it's worth, I recently did a quick implementation of the spellchecker feature, and I simply created another field in my schema (Iike 'spell' in Tristan's example below). After feeding content into my search index, I used the spell field into add one single-field document for every distinc

Re: Problems running SOLR 1.2 - documents not being indexed properly

2007-07-09 Thread Chris Hostetter
: After I removed manually it worked correctly and I've restarted a few times : since the "lost lock" was there... Isn't that lock removal on start-up : optional? it is, it's controlled by the... false ...option in the mainIndex or indexDefaults section. : >> The main problem to me is that i

Re: Problem with Russian stemmer in Solr 1.2

2007-07-09 Thread Daniel Alheiros
Hi Andrew In fact I did it creating all the Factories for Solr, but I think you can use it directly, changing your index like this: I’ve not tested that, but I saw something like this. Please tell me if it works as expected and if it solves your problem (I’

Re: Problem with Russian stemmer in Solr 1.2

2007-07-09 Thread Andrew Stromnov
Hi Daniel, Yes, I want to try RussianAnalyzer. How to enable it in Solr config? Thank you. Daniel Alheiros wrote: > > Hi Andrew. > > I'm using the RussianAnalyzer (part of the Lucene analyzers) and it > reduces > списки to списк. > > Do you want to try this other Analyzer? > > Regards, > D

Re: Problem with Russian stemmer in Solr 1.2

2007-07-09 Thread Daniel Alheiros
Hi Andrew. I'm using the RussianAnalyzer (part of the Lucene analyzers) and it reduces списки to списк. Do you want to try this other Analyzer? Regards, Daniel On 9/7/07 16:06, "Andrew Stromnov" <[EMAIL PROTECTED]> wrote: > списки arrondissement turvallisuuden http://www.bbc.co.uk/ This e-m

distribution scripts on Solaris

2007-07-09 Thread Bill Au
I am working on bug SOLR-282: https://issues.apache.org/jira/browse/SOLR-282 and noticed that the code in the scripts to measure elapsed time also does not work on Solaris as the date command there does not support the "%s" format. Anyone know of a good way to measure the elapsed time on Solari

Problem with Russian stemmer in Solr 1.2

2007-07-09 Thread Andrew Stromnov
Tried on JDK1.6p2 on MS Vista and CentOS. query analyser config: ... ... Query: списки arrondissement turvallisuuden Analysis.jsp result: org.apache.solr.analysis.WhitespaceTokenizerFactory {} term position 1 2 3 term text списки arrondissement turvallisuuden org.a

Re: Problems running SOLR 1.2 - documents not being indexed properly

2007-07-09 Thread Daniel Alheiros
Hi Ard After I removed manually it worked correctly and I've restarted a few times since the "lost lock" was there... Isn't that lock removal on start-up optional? Regards, Daniel On 9/7/07 13:50, "Ard Schrijvers" <[EMAIL PROTECTED]> wrote: > Hello Daniel, > > it sounds strange to me because

RE: Problems running SOLR 1.2 - documents not being indexed properly

2007-07-09 Thread Ard Schrijvers
Hello Daniel, it sounds strange to me because in SolrCore you can find in initIndex() that locks are removed at initialisation Regards Ard > > Hi > > I'm developing a search application using SOLR/Lucene and I > think I found a > bug. > > I was trying to index more documents and the tot

Problems running SOLR 1.2 - documents not being indexed properly

2007-07-09 Thread Daniel Alheiros
Hi I'm developing a search application using SOLR/Lucene and I think I found a bug. I was trying to index more documents and the total document number wasn't changing, but for each document batch I was sending to update the index, the numbers shown by the console in the update handler section was

Re: Spell Check Handler

2007-07-09 Thread Tristan Vittorio
I think there is some confusion regarding how the spell checker actually uses the termSourceField. It is suggested that you use a simple field type such a "string", however since this field type does not tokenize or split words, it is only useful in situations where the whole field is considered

Re: Spell Check Handler

2007-07-09 Thread climbingrose
Thanks for the quick reply. However, I'm still not able to setup spellchecker. Solr does create spell directory under data but doesn't seem to build the spellchecker index. Here are snippets of my schema.xml: 1 0.5 spell t

Re: Spell Check Handler

2007-07-09 Thread Tristan Vittorio
The spellchecker should be available in 1.2 release, your query is incorrect, try the following: http://localhost:8984/solr/select/?q=java&qt=spellchecker&termSourceField=title_text&cmd=rebuild the 'q' parameter must only contain the word being checked; you must specify the field separately. Yo

Re: Spell Check Handler

2007-07-09 Thread climbingrose
Hi Tristan, Is this spellchecker available in 1.2 release or I have to build the trunk. I tried your instructions but Solr returns nothing: http://localhost:8984/solr/select/?q=title_text:java&qt=spellchecker&cmd=rebuild Result: 0 3 rebuild Thanks. On 7/8/07, Tristan Vittorio <[EMAIL P