Package dovetaildb.fileaccessor

Examples of dovetaildb.fileaccessor.OffsetValueFilePair


  public String getHomedir() { return homeDir; }
 
    private void open() {
    terms = new PagedFile(termsFile=new File(homeDir + File.separator + "terms"));
    postings = new PagedFile(postingsFile=new File(homeDir + File.separator + "postings"));
    docData = new OffsetValueFilePair(
        docOffsetFile=new File(homeDir + File.separator + "docOffset"),
        docValueFile=new File(homeDir + File.separator + "docValue")
        );
    }
View Full Code Here

TOP

Related Classes of dovetaildb.fileaccessor.OffsetValueFilePair

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.