Re: result count query

2008-05-14 Thread solr_user
or not. Solr-user Otis Gospodnetic wrote: > > I think specifying rows=0 in the URL gets you that number without giving > you the actual results. > > > Otis > -- > Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch > > > - Original Message >

result count query

2008-05-14 Thread solr_user
Hi, Is there an efficient way to just get the result count of a query issued to Solr? Solr-user -- View this message in context: http://www.nabble.com/result-count-query-tp17240159p17240159.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Multiple SpellCheckRequestHandlers

2008-05-06 Thread solr_user
mething like > http://../sc1?. for the first one and http://./sc2? for > the second one. > > Otis > -- > Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch > > - Original Message >> From: solr_user <[EMAIL PROTECTED]> >> To: solr-

Re: Multiple SpellCheckRequestHandlers

2008-05-06 Thread solr_user
Lucene - Solr - Nutch > > - Original Message >> From: solr_user <[EMAIL PROTECTED]> >> To: solr-user@lucene.apache.org >> Sent: Tuesday, May 6, 2008 12:16:07 AM >> Subject: Multiple SpellCheckRequestHandlers >> >> >> Hi all, >>

Multiple SpellCheckRequestHandlers

2008-05-05 Thread solr_user
Hi all, Is it possible in Solr to have multiple SpellCheckRequestHandlers. In my application I have got two different spell check indexes. I want the spell checker to check for a spelling suggestion in the first index and if it fails to get any suggestion from the first index only then it sho

operator precedence

2008-04-07 Thread solr_user
Hi, What is the default operator precedence between AND and OR in SOLR? For example if I type a query "A OR B AND C", will it be treated as "(A OR B) AND C" OR "A OR (B AND C)" Thanks -- View this message in context: http://www.nabble.com/operator-precedence-tp16541732p16541732.html Sent f

Re: AlphaNumeric search in Solr

2008-03-16 Thread solr_user
tokens - "axd" and "100", then the search should behave exactly as if I was searching for the string "axd 100". Thanks. Yonik Seeley wrote: > > On Sun, Mar 16, 2008 at 5:43 PM, solr_user <[EMAIL PROTECTED]> wrote: >> Removing the WordDelimiterF

Re: AlphaNumeric search in Solr

2008-03-16 Thread solr_user
Hi Yonik, Removing the WordDelimiterFilter did the trick. Now I am able to get results back for alphanumeric search. What other side effect will removing the WordDelimiterFilter cause. Thanks Yonik Seeley wrote: > > On Fri, Mar 14, 2008 at 10:15 PM, solr_user <[EMAIL PROTECTE

Re: AlphaNumeric search in Solr

2008-03-14 Thread solr_user
d with Solr? If so, what does the index > analyzer look like for that field? > WordDelimiterFilter would split axd110 into two tokens, so it must > have been indexed in a compatible way (see the example schema.xml). > > -Yonik > > On Fri, Mar 14, 2008 at 8:51 PM, solr_use

AlphaNumeric search in Solr

2008-03-14 Thread solr_user
Hi, I am trying to do alphanumeric search for terms like "axd110", but I don't get any results back from Solr. When I open my index using Luke, I am able to search for these terms and get results back, so I definitely know that the terms are present in the index. Below is the query section f

spell check for combined words

2008-01-11 Thread solr_user
Does Solr spell checker have the ability to suggest splitting of combined words. So for e.g. if I have got the word "apple" and "computer" in my index and if I type "applecomputer" then how can I make it suggest "apple computer" -- View this message in context: http://www.nabble.com/spell-chec