Lucene.Net.Search.CachingCollector.ScoreCachingCollector.ScoreCachingCollector C# (CSharp) Method

ScoreCachingCollector() private method

private ScoreCachingCollector ( Collector other, double maxRAMMB ) : System.Collections.Generic
other Collector
maxRAMMB double
return System.Collections.Generic
            internal ScoreCachingCollector(Collector other, double maxRAMMB)
                : base(other, maxRAMMB, true)
            {
                CachedScorer = new CachedScorer();
                CachedScores = new List<float[]>();
                CurScores = new float[INITIAL_ARRAY_SIZE];
                CachedScores.Add(CurScores);
            }

Same methods

CachingCollector.ScoreCachingCollector::ScoreCachingCollector ( Collector other, int maxDocsToCache ) : System.Collections.Generic
CachingCollector.ScoreCachingCollector