The SortedSetDocValuesField worked great.
Thanks.
Kyle
> From: luc...@mikemccandless.com
> Date: Wed, 12 Feb 2014 05:39:24 -0500
> Subject: Re: Getting term ords during collect
> To: java-user@lucene.apache.org
>
> It sounds like you are just indexing at TextFiel
> Kyle
>
>> From: luc...@mikemccandless.com
>> Date: Tue, 11 Feb 2014 19:59:03 -0500
>> Subject: Re: Getting term ords during collect
>> To: java-user@lucene.apache.org
>>
>> SortedSetDV is probably the best way to do so. You could also encode
>>
gt; From: luc...@mikemccandless.com
> Date: Tue, 11 Feb 2014 19:59:03 -0500
> Subject: Re: Getting term ords during collect
> To: java-user@lucene.apache.org
>
> SortedSetDV is probably the best way to do so. You could also encode
> the ords yourself into a byte[] and use binary DV.
>
> Bu
SortedSetDV is probably the best way to do so. You could also encode
the ords yourself into a byte[] and use binary DV.
But why are you seeing it take too long to load? You can switch to
different DV formats to tradeoff RAM usage and lookup speed..
Mike McCandless
http://blog.mikemccandless.co
Hi All,
What are the ways I can get the ords for the terms of a particular field in the
collect method of a Collector?
I'm currently using a SortedSetDocValues that I obtained before the query but
it's taking longer to load than I would like.
Thanks
Kyle