A question about solr score
Hi, everyone! As we known, solr uses lucene scoring. This score is the raw score. Scores returned from Hits aren't necessarily the raw score, however. If the top-scoring document scores greater than 1.0, all scores are normalized from that score, such that all scores from Hits are uaranteed to be 1.0 or less. Now it is my question, I always get scores of some documents which are above 1.0, even some get up to 10.0! Why? I will really appreciate your reply.
Re: Search Multiple indexes In Solr
It is said that this new feather will be added in solr1.3, but I am not sure about that. I think the following maybe useful for you: https://issues.apache.org/jira/browse/SOLR-303 https://issues.apache.org/jira/browse/SOLR-255 2007/11/8, j 90 <[EMAIL PROTECTED]>: > > Hi, I'm new to Solr but very familiar with Lucene. > > Is there a way to have Solr search in more than once index, much like the > MultiSearcher in Lucene ? > > If so how so I configure the location of the indexes ? >
Re: SolrJ - where can I have it
You can get it from svn (http://svn.apache.org/repos/asf/lucene/solr/trunk) or solr nightly-built version( http://people.apache.org/builds/lucene/solr/nightly/). Before using svn server, you maybe need to install a svn client in Windows, such as tortoiseSVN. If you are using a linux system, make sure you compiled the svn package, then you can easy use command svn checkout so so.Surely it is also a good idea to using some client in linux system. 2007/11/20, zqzuk <[EMAIL PROTECTED]>: > > > Hi, I have been seeing tutorials and messages discussing solrj the magic > client package which eases tasks for building solr powered applications... > but I have been searching around without success, could you please give me > some directions? > > Many thanks! > -- > View this message in context: > http://www.nabble.com/SolrJ---where-can-I-have-it-tf4840770.html#a13849565 > Sent from the Solr - User mailing list archive at Nabble.com. > >
Re: CJK Analyzers for Solr
lance, The following is a instance schema fieldtype using solr1.2 and CJK package. And it works. As you said, CJK does parse cjk string in a bi-gram way, just like turning 'C1C2C3C4' into 'C1C2 C2C3 C3C4'. More to the point, it is worthwhile to mention that the index expand beyond tolerance to use cjk package, and it will take a long time to index document. For most enterprise applications, I think, it need a more effective string parser. On 11/27/07, Norskog, Lance <[EMAIL PROTECTED]> wrote: > > I notice this is in the future tense. Is the CJKTokenizer available yet? > From what I can see, the CJK code should be a Filter instead anyway. > Also, the ChineseFilter and CJKTokenizer do two different things. > > CJKTokenizer turns C1C2C3C4 into 'C1C2 C2C3 C3C4'. ChineseFilter (from > 2001) turns C1C2 into 'C1 C2'. I hope someone who speaks Mandarin or > Cantonese understands what this should do. > > Lance > > -Original Message- > From: Eswar K [mailto:[EMAIL PROTECTED] > Sent: Monday, November 26, 2007 10:28 AM > To: solr-user@lucene.apache.org > Subject: Re: CJK Analyzers for Solr > > Hoss, > > Thanks a lot. Will look into it. > > Regards, > Eswar > > On Nov 26, 2007 11:55 PM, Chris Hostetter <[EMAIL PROTECTED]> > wrote: > > > > > : Does Solr come with Language analyzers for CJK? If not, can you > > please > > : direct me to some good CJK analyzers? > > > > Lucene has a CJKTokenizer and CJKAnalyzer in the contrib/analyzers > jar. > > they can be used in Solr. both have been included in Solr for a while > > > now, so you can specify CJKAnalyzer in your schema with Solr 1.2, but > > starting with Solr 1.3 a Factory for the Tokenizer will also be > > included so it can be used in a more complex analysis chain defined in > the schema. > > > > > > > > -Hoss > > > > >