/** * Clears the storage of all registered backend data providers. This includes backend storage * engines and index providers. * * <p>IMPORTANT: Clearing storage means that ALL data will be lost and cannot be recovered. * * @throws StorageException */ public void clearStorage() throws StorageException { edgeStore.close(); vertexIndexStore.close(); edgeIndexStore.close(); idAuthority.close(); storeManager.clearStorage(); // Indexes for (IndexProvider index : indexes.values()) index.clearStorage(); }
public void clearStorage() throws StorageException { edgeStore.close(); vertexIndexStore.close(); idAuthority.close(); storeManager.clearStorage(); }