I'm wondering about the "minimumNumberOfBlurResults" on the Facet. I was thinking this was the number that blur would stop counting but now i'm not sure.
I've got a query:
BlurQuery bq = BlurUtil.newSimpleQuery("*");
Facet f = new Facet("twitter.handle", 10);
bq.addFacet(f);
Now, I'd expect the return of results.getFacetCounts().get(0) to be 10
or less. But I end up with numbers greater than 10 in this case. Are
my expectations just wrong?
Thanks,
--tim
