Package com.alimama.mdrill.fdtBlockCompress

Examples of com.alimama.mdrill.fdtBlockCompress.FdtCompressIndexOutput


      indexStream = directory.createOutput(IndexFileNames.segmentFileName(segment, IndexFileNames.FIELDS_INDEX_EXTENSION));

      if(FieldsWriterCompress.isFdtCompress()&&!(directory instanceof RAMDirectory))
      {
          indexStream.writeInt(FieldsWriterCompress.FORMAT_CURRENT);
          fieldsStream=new FdtCompressIndexOutput(fdt,1024*512);
          fieldsStream.writeInt(FieldsWriterCompress.FORMAT_CURRENT);

      }else{
          fdt.writeInt(FORMAT_CURRENT);
          indexStream.writeInt(FORMAT_CURRENT);
View Full Code Here

TOP

Related Classes of com.alimama.mdrill.fdtBlockCompress.FdtCompressIndexOutput

Copyright © 2018 www.massapicom. 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.