Re: Release date of SOLR 1.3

2008-05-19 Thread Andrew Savory
Hi, 2008/5/16 Noble Paul നോബിള്‍ नोब्ळ् <[EMAIL PROTECTED]>: > If you are looking for an immediate need waiting for a release I must > advice you against waiting for the solr1.3 release. The best strategy > would be to take a nightly and start using it. Test is thoroughly and > if bugs are found r

Re: Release date of SOLR 1.3

2008-05-19 Thread Ian Holsman (Lists)
Noble Paul നോബിള്‍ नोब्ळ् wrote: If you are looking for an immediate need waiting for a release I must advice you against waiting for the solr1.3 release. The best strategy would be to take a nightly and start using it. Test is thoroughly and if bugs are found report them back . If everything is

Re: Auto commit and optimize settings

2008-05-19 Thread Lucas F. A. Teixeira
Take a look in mergeFactor (and probably use compound format). []s, Lucas Frare A. Teixeira [EMAIL PROTECTED] Tel: +55 11 3660.1622 - R3018 Vaijanath N. Rao escreveu: Hi Otis and Solr-users, I was under the impression that when one call optimize all the indexes c

Re: Searching "inside of words"

2008-05-19 Thread Daniel Löfquist
Thank you for your reply. I've been trying some things out this morning but I'm still not getting it to work properly. I have a feeling that I'm on the right track somewhat though. The type in my schema.xml looks like this:

Re: Searching "inside of words"

2008-05-19 Thread Otis Gospodnetic
You are doing the right thing. If you are creating n-grams at index time, you have to match that at query time. If the query is "monitor", you need to pass that through n-gram tokenizer, too. n-grams of length 18 look a little weird Otis -- Sematext -- http://sematext.com/ -- Lucene - S

Re: Auto commit and optimize settings

2008-05-19 Thread Otis Gospodnetic
Vaijanath, My suggestion is to: - turn off autocommit - double-check that mergeFactor is not too high (e.g. higher than 50) - double check your servers open file limit (ulimit -a is the command to run) and if it's low (e.g. 1024) increase it (info about how to do might be on the Wiku, if not Go

Re: Release date of SOLR 1.3

2008-05-19 Thread Chris Hostetter
: solr release in some time, would it be worth looking at what outstanding : issues are critical for 1.3 and perhaps pushing some over to 1.4, and : trying to do a release soon? That's what is typically done when the Developers start getting an itch to make a release. Jira keeps track of all

Re: Searching "inside of words"

2008-05-19 Thread Chris Hostetter
: You are doing the right thing. If you are creating n-grams at index : time, you have to match that at query time. If the query is "monitor", : you need to pass that through n-gram tokenizer, too. n-grams of length : 18 look a little weird you don't *have* to use ngrams at query time .

adding expand=true to WordDelimiterFilter

2008-05-19 Thread Geoffrey Young
hi :) I'm having an interesting problem with my data. in general, I want the results of the WordDelimiterFilter for better matching, but there are times when it's just too aggressive. for example boys2men => boys 2 men (good) p!nk => pnk (maybe) !!! => (nothing - bad) there'

Re: [SPAM] [poll] Change logging to SLF4J?

2008-05-19 Thread Matthew Runo
I just read through the dev list's thread.. and I'm voting for SLF4J as well. Thanks! Matthew Runo Software Developer Zappos.com 702.943.7833 On May 6, 2008, at 7:40 AM, Ryan McKinley wrote: Hello- There has been a long running thread on solr-dev proposing switching the logging system to us

RE: Help with Solr + KStem

2008-05-19 Thread Hung Huynh
Otis, Thanks for helping me out. I downloaded the KStem source you provided below. I have .class files for /apache/lucene/analysis/KStem*.class and /apache/solr/analysis/KStemFilterFactory.class compiled from Eclipse. What do I do next? Sorry, I'm a complete newbie in Java and Solr. Do I ? 1. Jar

How to limit number of pages per domain

2008-05-19 Thread JLIST
I'm indexing pages from multiple domains. In any given result set, I don't want to return more than two links from the same domain, so that the first few pages won't be all from the same domain. I suppose I could get more (say, 100) pages from solr, then sort in memory in the front-end server to mi

HTTP Version Not Supported errors?

2008-05-19 Thread Matthew Runo
Hello folks! We're starting to see a lot of errors in Solr/SolrJ with the message "HTTP Version Not Supported". I can't reproduce it, and it only seems to happen with load - if there's no one browsing our site, then we don't get the errors if we try browsing around ourselves. I looked abo

Re: adding expand=true to WordDelimiterFilter

2008-05-19 Thread Chris Hostetter
by "expand=true" it sounds like you mean you are looking for a way to preserve the orriginal term without any characteres removed. This sounds like SOLR-14 ... you might want to take a look at it, and see if the patch is still useable, and if not see if you can bring it up to date. -Hoss

Re: exceeded limit of maxWarmingSearchers

2008-05-19 Thread Chris Hostetter
: and I though a true master-slave setup would be overkill. Is it really : problematic to run queries on instances that aren't auto-warmed? Sounds like it really depends on your usecases and what you consider "problematic" ... there's no inherent problem in having queries hit an unwarmed index, i

Re: adding expand=true to WordDelimiterFilter

2008-05-19 Thread Geoffrey Young
Chris Hostetter wrote: by "expand=true" it sounds like you mean you are looking for a way to preserve the orriginal term without any characteres removed. yes, that's it. This sounds like SOLR-14 ... you might want to take a look at it, and see if the patch is still useable, and if not see

Problem getting spelling suggestions to work

2008-05-19 Thread oleg_gnatovskiy
Hello. I am having some trouble getting spelling suggestions to work. I am running the latest nightly build of Solr. The URL I am hitting is: http://localhost:8983/solr/select/?q=pizzza&qt=spellchecker&cmd=rebuild and the response I am getting is 0 14 rebuild pizzza spellc

anyone use hadoop+solr?

2008-05-19 Thread j . L
can u talk about it ? maybe i will use hadoop + solr. thks for ur advice. -- regards j.L

Re: Problem getting spelling suggestions to work

2008-05-19 Thread Otis Gospodnetic
I haven't actually used this in a while, but are you asking the handler for spellchecking (q=pizzza) or are you asking it to rebuild the index (cmd=rebuild)? Asking for both at the same time might not be the best thing. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch -

Re: How to limit number of pages per domain

2008-05-19 Thread Otis Gospodnetic
Jack, look at Solr JIRA and search for: field collapsing There is a patch there that does this, though it's not in sync with the Solr trunk. You can also look at how Nutch does this. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message > From: JLIST <[EM

Re: HTTP Version Not Supported errors?

2008-05-19 Thread Otis Gospodnetic
I am guessing this is your Tomcat's error message. I'd start by looking at Tomcat logs to see who's specifying invalid HTTP versions. The thing to look for is something like "GET /solr/select HTTP/1.1" That 1.1 is HTTP version 1.1. I am guessing something/someone is specifying something

Re: Problem getting spelling suggestions to work

2008-05-19 Thread oleg_gnatovskiy
Thats true, but that's not the problem. The problem is that you can't call qt=spellchecker if you redefine /select in solrconfig.xml. I was wondering how I could add qt functionality back. Otis Gospodnetic wrote: > > I haven't actually used this in a while, but are you asking the handler > for