Re: Huge FacetArrays while using SortedSetDocValuesAccumulator

2013-08-28 Thread Shai Erera
Oops you're right, it was committed in LUCENE-4985 which will be released in Lucene 4.5. Shai On Wed, Aug 28, 2013 at 6:16 PM, Krishnamurthy, Kannan < kannan.krishnamur...@contractor.cengage.com> wrote: > Thanks for the response. I double checked that > SortedSetDocValuesAccumulator doesn't tak

Re: Huge FacetArrays while using SortedSetDocValuesAccumulator

2013-08-28 Thread Krishnamurthy, Kannan
Thanks for the response. I double checked that SortedSetDocValuesAccumulator doesn't take a FacetArray in its ctor currently in 4.3.0 and 4.4. But FacetAccumulator does take FacetArray in its ctor. Am I missing something here? We have a high traffic application currently doing about 250 searches

Re: Huge FacetArrays while using SortedSetDocValuesAccumulator

2013-08-27 Thread Shai Erera
Hi SortedSetDocValuesAccumulator does receive FacetArrays in its ctor, so you can pass ReusingFacetArrays. You will need to call FacetArrays.free() when you're done with accumulation though. However, do notice that ReusingFacetArrays did not show any big gain even with large taxonomies -- that is

Huge FacetArrays while using SortedSetDocValuesAccumulator

2013-08-26 Thread Krishnamurthy, Kannan
Hello, We are working with large lucene 4.3.0 index and using SortedSetDocValuesFacetFields for creating facets and SortedSetDocValuesAccumulator for facet accumulation. We couldn't use a taxonomy based facet implementation (We use MultiReader for searching and our indices is composed of mult