Examples of Lucene41PostingsBaseFormat


Examples of org.apache.lucene.codecs.lucene41.Lucene41PostingsBaseFormat

    this(freqCutoff, BlockTreeTermsWriter.DEFAULT_MIN_BLOCK_SIZE, BlockTreeTermsWriter.DEFAULT_MAX_BLOCK_SIZE);
  }

  /** Inlines docFreq=<code>freqCutoff</code> terms, otherwise uses the normal "Lucene41" format. */
  public Pulsing41PostingsFormat(int freqCutoff, int minBlockSize, int maxBlockSize) {
    super("Pulsing41", new Lucene41PostingsBaseFormat(), freqCutoff, minBlockSize, maxBlockSize);
  }
View Full Code Here

Examples of org.apache.lucene.codecs.lucene41.Lucene41PostingsBaseFormat

    this(freqCutoff, BlockTreeTermsWriter.DEFAULT_MIN_BLOCK_SIZE, BlockTreeTermsWriter.DEFAULT_MAX_BLOCK_SIZE);
  }

  /** Inlines docFreq=<code>freqCutoff</code> terms, otherwise uses the normal "Lucene41" format. */
  public Pulsing41PostingsFormat(int freqCutoff, int minBlockSize, int maxBlockSize) {
    super("Pulsing41", new Lucene41PostingsBaseFormat(), freqCutoff, minBlockSize, maxBlockSize);
  }
View Full Code Here

Examples of org.apache.lucene.codecs.lucene41.Lucene41PostingsBaseFormat

    this(1);
  }
 
  public FSTPulsing41PostingsFormat(int freqCutoff) {
    super("FSTPulsing41");
    this.wrappedPostingsBaseFormat = new Lucene41PostingsBaseFormat();
    this.freqCutoff = freqCutoff;
  }
View Full Code Here

Examples of org.apache.lucene.codecs.lucene41.Lucene41PostingsBaseFormat

    this(1);
  }
 
  public FSTOrdPulsing41PostingsFormat(int freqCutoff) {
    super("FSTOrdPulsing41");
    this.wrappedPostingsBaseFormat = new Lucene41PostingsBaseFormat();
    this.freqCutoff = freqCutoff;
  }
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.