if (storePath.exists()) {
log.warning(L.l("Removal of old temp file '{0}' failed. Please check permissions.",
storePath.getNativePath()));
}
Database database = new Database();
database.ensureMemoryCapacity(1024 * 1024);
database.init();
_store = new BlockStore(database, name, null, storePath);
_store.setFlushDirtyBlocksOnCommit(false);
_store.create();
} catch (Exception e) {