Re: Multi-Valued Faceting

2006-12-06 Thread Chris Hostetter
: > which stores order as int[][] rather than int[]; a variant of : > SimpleFacets.getFieldCacheCounts would simply need an inner loop to : > tally each of the Document's Term indexes for that field. : : I think something like that is the right approach, the only problem : being the size in memory

Re: Multi-Valued Faceting

2006-12-06 Thread Yonik Seeley
On 12/6/06, J.J. Larrea <[EMAIL PROTECTED]> wrote: My thought was that the simplest approach would be to subclass FieldCacheImpl to introduce a getMultiStringIndex method derived from getStringIndex, defining and returning a MultiStringIndex class which stores order as int[][] rather than int[];