Package dovetaildb.store

Examples of dovetaildb.store.ChunkedMemoryMappedFile


          throw new RuntimeException("page location not at root - unexpected");

      }
      docIdToDoc        = new MappedBytesInterface(openFile("docidtodoc"));
      docFields         = new MappedBytesInterface(openFile("docfields"));
      overflowFieldData = new ChunkedMemoryMappedFile(openFile("overflow"));
     
      this.maxDocId = maxDocIdFile.getLong(0);
     
    } catch (FileNotFoundException e) {
      throw new RuntimeException(e);
View Full Code Here

TOP

Related Classes of dovetaildb.store.ChunkedMemoryMappedFile

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.