Add HyperLevelDB backend

This commit is contained in:
Vinnie Falco
2013-07-15 08:35:58 -07:00
parent 81657e5e66
commit 740115b65a
12 changed files with 233 additions and 16 deletions

View File

@@ -184,6 +184,9 @@ int rippleMain (int argc, char** argv)
// These must be added before the Application object is created
NodeStore::addBackendFactory (SqliteBackendFactory::getInstance ());
NodeStore::addBackendFactory (LevelDBBackendFactory::getInstance ());
#if RIPPLE_HYPERLEVELDB_AVAILABLE
NodeStore::addBackendFactory (HyperLevelDBBackendFactory::getInstance ());
#endif
#if RIPPLE_MDB_AVAILABLE
NodeStore::addBackendFactory (MdbBackendFactory::getInstance ());
#endif