TrieDateField, precisionStep impact on sorting performance

2014-07-16 Thread Kuehn, Dennis
and minimizes index size; precisionStep=8 (the default) enables efficient range queries.' Does this mean sorting performance will suffer for precisionStep values other than 0? Cheers, Dennis

Re: TrieDateField, precisionStep impact on sorting performance

2014-07-16 Thread Yonik Seeley
, the documentation for TrieDateField says: 'precisionStep=0 enables efficient date sorting and minimizes index size; precisionStep=8 (the default) enables efficient range queries.' Does this mean sorting performance will suffer for precisionStep values other than 0? No, sorting speed is unaffected

Re: TrieDateField, precisionStep impact on sorting performance

2014-07-16 Thread Kuehn, Dennis
, the precisionStep value only affects range query performance and index size. However, the documentation for TrieDateField says: 'precisionStep=0 enables efficient date sorting and minimizes index size; precisionStep=8 (the default) enables efficient range queries.' Does this mean sorting performance

Re: Sorting performance

2012-06-08 Thread Dmitry Kan
= in the query to achieve the same functionality? Any particular way to index the data to achieve the same result? any idea to boost the performance and get the intended functionality? -- View this message in context: http://lucene.472066.n3.nabble.com/Sorting-performance-tp3987633.html Sent

Sorting performance

2012-06-04 Thread Gau
functionality? -- View this message in context: http://lucene.472066.n3.nabble.com/Sorting-performance-tp3987632.html Sent from the Solr - User mailing list archive at Nabble.com.

Sorting performance

2012-06-04 Thread Gau
functionality? -- View this message in context: http://lucene.472066.n3.nabble.com/Sorting-performance-tp3987633.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Sorting performance + replication of index between cores

2009-09-03 Thread Sreeram Vaidyanathan
] Sent: 22 October 2008 04:56 To: solr-user@lucene.apache.org Subject: Re: Sorting performance : The problem is that I will have hundreds of users doing queries, and a : continuous flow of document coming in. : So a delay in warming up a cache could be acceptable if I do it a few times : per

Re: Sorting performance + replication of index between cores

2009-04-17 Thread sunnyfr
Message- From: Chris Hostetter [mailto:hossman_luc...@fucit.org] Sent: 22 October 2008 04:56 To: solr-user@lucene.apache.org Subject: Re: Sorting performance : The problem is that I will have hundreds of users doing queries, and a : continuous flow of document coming in. : So a delay

Re: Sorting performance + replication of index between cores

2008-10-27 Thread christophe
:[EMAIL PROTECTED] Sent: 22 October 2008 04:56 To: solr-user@lucene.apache.org Subject: Re: Sorting performance : The problem is that I will have hundreds of users doing queries, and a : continuous flow of document coming in. : So a delay in warming up a cache could be acceptable if I do it a few

Re: Sorting performance

2008-10-23 Thread christophe
PROTECTED] Sent: 22 October 2008 04:56 To: solr-user@lucene.apache.org Subject: Re: Sorting performance : The problem is that I will have hundreds of users doing queries, and a : continuous flow of document coming in. : So a delay in warming up a cache could be acceptable if I do it a few times : per

RE: Sorting performance

2008-10-22 Thread Beniamin Janicki
Janicki -Original Message- From: Chris Hostetter [mailto:[EMAIL PROTECTED] Sent: 22 October 2008 04:56 To: solr-user@lucene.apache.org Subject: Re: Sorting performance : The problem is that I will have hundreds of users doing queries, and a : continuous flow of document coming in. : So

Re: Sorting performance

2008-10-21 Thread christophe
I'm now considering if Solr (Lucene) is a good choice when we have a huge number of indexed document and a large number of new documents needs to be indexed everyday. Maybe I'm wrong, but my feeling is that the way the sort caches are handled (recreated after new commit, not shared between

Re: Sorting performance

2008-10-21 Thread Chris Hostetter
: The problem is that I will have hundreds of users doing queries, and a : continuous flow of document coming in. : So a delay in warming up a cache could be acceptable if I do it a few times : per day. But not on a too regular basis (right now, the first query that loads : the cache takes 150s).

Re: Sorting performance

2008-10-20 Thread christophe
it. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: christophe [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Friday, October 17, 2008 1:28:52 PM Subject: Sorting performance Hi, I'm doing some tests with Solr1.3 I have loaded around 7M

Re: Sorting performance

2008-10-20 Thread christophe
- Nutch - Original Message From: christophe [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Friday, October 17, 2008 1:28:52 PM Subject: Sorting performance Hi, I'm doing some tests with Solr1.3 I have loaded around 7M documents, each with a few stored and indexed fields

Re: Sorting performance

2008-10-20 Thread Erick Erickson
@lucene.apache.org Sent: Friday, October 17, 2008 1:28:52 PM Subject: Sorting performance Hi, I'm doing some tests with Solr1.3 I have loaded around 7M documents, each with a few stored and indexed fields. This query: text:sometext returns the results, sorted by score in a few milliseconds. (I

Re: Sorting performance

2008-10-20 Thread Mark Miller
value are you using? Try increasing it. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: christophe [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Friday, October 17, 2008 1:28:52 PM Subject: Sorting performance Hi, I'm doing some

Re: Sorting performance

2008-10-20 Thread christophe
Subject: Sorting performance Hi, I'm doing some tests with Solr1.3 I have loaded around 7M documents, each with a few stored and indexed fields. This query: text:sometext returns the results, sorted by score in a few milliseconds. (I display 10 out of 8747 matched documents) This one

Re: Sorting performance

2008-10-20 Thread Norberto Meijome
On Mon, 20 Oct 2008 16:28:23 +0300 christophe [EMAIL PROTECTED] wrote: Hum. this mean I have to wait before I index new documents and avoid indexing when they are created (I have about 50 000 new documents created each day and I was planning to make those searchable ASAP). you can

Re: Sorting performance

2008-10-20 Thread christophe
The problem is that I will have hundreds of users doing queries, and a continuous flow of document coming in. So a delay in warming up a cache could be acceptable if I do it a few times per day. But not on a too regular basis (right now, the first query that loads the cache takes 150s).

RE: Sorting performance

2008-10-20 Thread Lance Norskog
Miller [mailto:[EMAIL PROTECTED] Sent: Monday, October 20, 2008 6:24 AM To: solr-user@lucene.apache.org Subject: Re: Sorting performance christophe wrote: When I start indexing new documents, searches are taking long time again: is the sort cache flushed when new documents are indexed ? When you

Re: Sorting performance

2008-10-18 Thread christophe
are you using? Try increasing it. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: christophe [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Friday, October 17, 2008 1:28:52 PM Subject: Sorting performance Hi, I'm doing some

Re: Sorting performance

2008-10-18 Thread christophe
: Friday, October 17, 2008 1:28:52 PM Subject: Sorting performance Hi, I'm doing some tests with Solr1.3 I have loaded around 7M documents, each with a few stored and indexed fields. This query: text:sometext returns the results, sorted by score in a few milliseconds. (I display 10 out of 8747

Re: Sorting performance

2008-10-18 Thread Mark Miller
it? You got an OOM? What -Xmx value are you using? Try increasing it. Otis -- Sematext -- http://sematext.com/ -- Lucene - Solr - Nutch - Original Message From: christophe [EMAIL PROTECTED] To: solr-user@lucene.apache.org Sent: Friday, October 17, 2008 1:28:52 PM Subject: Sorting

Sorting performance

2008-10-17 Thread christophe
Hi, I'm doing some tests with Solr1.3 I have loaded around 7M documents, each with a few stored and indexed fields. This query: text:sometext returns the results, sorted by score in a few milliseconds. (I display 10 out of 8747 matched documents) This one: text:sometext;id desc takes

Re: Sorting performance

2008-10-17 Thread Otis Gospodnetic
@lucene.apache.org Sent: Friday, October 17, 2008 1:28:52 PM Subject: Sorting performance Hi, I'm doing some tests with Solr1.3 I have loaded around 7M documents, each with a few stored and indexed fields. This query: text:sometext returns the results, sorted by score in a few milliseconds