/www.thetaphi.de
eMail: u...@thetaphi.de
-Original Message-
From: Michael McCandless [mailto:luc...@mikemccandless.com]
Sent: Wednesday, October 31, 2012 2:52 PM
To: java-user@lucene.apache.org
Subject: Re: IntField vs (IntDocValuesField + StoredField)
The big advantage of IntField is you can do Nu
: Michael McCandless [mailto:luc...@mikemccandless.com]
>> Sent: Wednesday, October 31, 2012 2:52 PM
>> To: java-user@lucene.apache.org
>> Subject: Re: IntField vs (IntDocValuesField + StoredField)
>>
>> The big advantage of IntField is you can do NumericRangeQuer
63, D-28213 Bremen
http://www.thetaphi.de
eMail: u...@thetaphi.de
> -Original Message-
> From: Ivan Vasilev [mailto:ivasi...@sirma.bg]
> Sent: Wednesday, October 31, 2012 2:43 PM
> To: LUCENE MAIL LIST
> Subject: IntField vs (IntDocValuesField + StoredField)
>
> H
ndless [mailto:luc...@mikemccandless.com]
> Sent: Wednesday, October 31, 2012 2:52 PM
> To: java-user@lucene.apache.org
> Subject: Re: IntField vs (IntDocValuesField + StoredField)
>
> The big advantage of IntField is you can do NumericRangeQuery/Filter on the
> field.
>
Thanks Mike.
On 31.10.2012 г. 15:52, Michael McCandless wrote:
The big advantage of IntField is you can do NumericRangeQuery/Filter
on the field.
Mike McCandless
http://blog.mikemccandless.com
On Wed, Oct 31, 2012 at 9:42 AM, Ivan Vasilev wrote:
Hy Guys,
Is there some advantage in speed or
The big advantage of IntField is you can do NumericRangeQuery/Filter
on the field.
Mike McCandless
http://blog.mikemccandless.com
On Wed, Oct 31, 2012 at 9:42 AM, Ivan Vasilev wrote:
> Hy Guys,
>
> Is there some advantage in speed or index size to use this:
>
> IntDocValuesField fld = new IntDo
Hy Guys,
Is there some advantage in speed or index size to use this:
IntDocValuesField fld = new IntDocValuesField("fldName", 1);
StoredField fld = new StoredField("fldName", 1);
instead of this:
IntField fld = new IntField("fld", 1, Field.Store.YES);
Searching, sorting and retrieving data fr