Re: question about fl=score

2008-03-20 Thread j . L
2008/3/20 李银松 <[EMAIL PROTECTED]>: > 1、When I set fl=score ,solr returns just as fl=*,score ,not just scores > Is it a bug or just do it on purpose? u can set fl=id,score, solr not support the style like fl=score > My customer want to get the 1th-10010th added docs > So I have to sort by t

Re: question about fl=score

2008-03-19 Thread 李银松
My customer want to get the 1th-10010th added docs So I have to sort by timestamp, to get top10010 docs' timestamp …… 2008/3/20, Walter Underwood <[EMAIL PROTECTED]>: > > Why do you want the 10,000th most relevant result? > That seems very, very odd. Most people need the most > relevant resul

Re: question about fl=score

2008-03-19 Thread Walter Underwood
Why do you want the 10,000th most relevant result? That seems very, very odd. Most people need the most relevant result. Maybe the ten most relevant results. "I'm searching for the movie 'Ratatouille', but please give me the 10,001st result instead of that movie." If you explain your desire, we m

Re: question about fl=score

2008-03-19 Thread 李银松
I am not getting 1 records I am getting records from 1-10010 So I need the top10010 records' *sort field* to merge and get final results,just like the distributed search the data to transport is about 500k(1 docs' scores) and the QTime is about 100ms but the total time I used is about

Re: question about fl=score

2008-03-19 Thread Walter Underwood
Getting 10,000 records will be slow. What are you doing with 10,000 records? wunder On 3/19/08 10:07 PM, "李银松" <[EMAIL PROTECTED]> wrote: > I want to get the top 1-10010 record from two different servers,So Ihave > to get top10010 scores from each server and merge them to get the results.

Re: question about fl=score

2008-03-19 Thread 李银松
I want to get the top 1-10010 record from two different servers,So I have to get top10010 scores from each server and merge them to get the results. I found the cost time was mostly used in XMLResponseParser while parsing the inputstream. I wander whether the costtime was used for net transpor

Re: question about fl=score

2008-03-19 Thread Yonik Seeley
2008/3/19 李银松 <[EMAIL PROTECTED]>: > 1、When I set fl=score ,solr returns just as fl=*,score ,not just scores > Is it a bug or just do it on purpose? On purpose... a score alone with no other context doesn't seem useful. > 2、I'm using solrj to get about 1 docs' score in LAN. It costs me abou

question about fl=score

2008-03-19 Thread 李银松
1、When I set fl=score ,solr returns just as fl=*,score ,not just scores Is it a bug or just do it on purpose? 2、I'm using solrj to get about 1 docs' score in LAN. It costs me about 10+ seconds first time(QTime is less than 100ms) , but 1-2 seconds second time with the same querystring. It seems