2829303132333435
} 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(); }