Package org.chaidb.db.helper.cache

Examples of org.chaidb.db.helper.cache.Cache


    }

    public BTreePathStorage(String storagePath, int cacheSize) {
        this.keyFile = new File(storagePath + KEY_FILE_SUFFIX);
        this.dataFile = new File(storagePath + DATA_FILE_SUFFIX);
        this.cache = new Cache(cacheSize);
        this.cache.clearCache();
    }
View Full Code Here

TOP

Related Classes of org.chaidb.db.helper.cache.Cache

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.