public FacetDataCache()
 {
     this.orderArray = null;
     this.valArray = null;
     this.maxIDs = null;
     this.minIDs = null;
     this.freqs = null;
     termCountSize = FacetHandler.TermCountSize.Large;
 }
 public FacetDataCache(BigSegmentedArray orderArray, ITermValueList valArray, int[] freqs, int[] minIDs, int[] maxIDs, FacetHandler.TermCountSize termCountSize)
 {
     this.orderArray = orderArray;
     this.valArray = valArray;
     this.freqs = freqs;
     this.minIDs = minIDs;
     this.maxIDs = maxIDs;
     this.termCountSize = termCountSize;
 }