public OEngineMemory() {
}
public OStorage createStorage(String iURL, Map<String, String> iConfiguration) {
try {
return new OStorageMemory(iURL);
} catch (Throwable t) {
OLogManager.instance().error(this, "Error on opening in memory storage: " + iURL, t, ODatabaseException.class);
}
return null;
}