Example usage for org.apache.solr.search BitDocSet BitDocSet

List of usage examples for org.apache.solr.search BitDocSet BitDocSet

Introduction

In this page you can find the example usage for org.apache.solr.search BitDocSet BitDocSet.

Prototype

public BitDocSet(FixedBitSet bits, int size) 

Source Link

Document

Construct a BitDocSet, and provides the number of set bits.

Usage

From source file:com.kmwllc.search.graph.GraphTermsCollector.java

public DocSet getDocSet() {

    if (bits == null) {
        bits = new FixedBitSet(maxDoc);
    }/*w  w w  . j  av  a 2  s. co  m*/
    // System.out.println("BIT SET POSITION :" + pos);
    return new BitDocSet(bits, numHits);
}