Re: A question about FacetField constructor

2014-06-22 Thread Shai Erera
What do you mean by does not index anything? Do you get an exception when you add a String[] with more than one element? You should probably call conf.setHierarchical(dimension), but if you don't do that you should receive an IllegalArgumentException telling you to do that... Shai On Sun, Jun

AW: fuzzy/case insensitive AnalyzingSuggester )

2014-06-22 Thread Clemens Wyss DEV
Oli, thanks for your valuable inputs! Generally, we found it beneficial to not combine all functionality in a single suggester Makes absolutely sense, but doesn't help keeping RAM-load low ;) unless you go with WFSTs. What we have done so far is build a term-index based on the terms of the

Re: Lucene Facets Module 4.8.1

2014-06-22 Thread Jigar Shah
I will try to dig more on your suggestions, and also assert FacetsConfig object. While debugging i found, buildFacetsResult(...) method from DrillSideways.java Its internally invoking following constructor from FastTaxonomyFacetCounts.java FastTaxonomyFacetCounts() {

Re: EarlyTerminatingSortingCollector help needed..

2014-06-22 Thread Ravikumar Govindarajan
Thanks for your reply clarifications What do you mean by When I use a SortField instead? Unless you are using early termination, Collector.collect is supposed to be called for every matching document For a normal sorting-query, on a top-level searcher, I execute TopDocs docs =

Re: A question about FacetField constructor

2014-06-22 Thread west suhanic
Hello: What do you mean by does not index anything? When I do a search the value returned for the dim set to Publish Date is null. If I pass through value[0] the publish date year is returned by the search. setHierarchical was called. When a String[] with more than one element is passed an

Re: A question about FacetField constructor

2014-06-22 Thread Shai Erera
Reply wasn't sent to the list. On Jun 22, 2014 8:15 PM, Shai Erera ser...@gmail.com wrote: Can you post an example which demonstrates the problem? It's also interesting how you count the facets, eg do you use a TaxonomyFacets object or something else? Have you looked at the facet demo code?