Improve rollback database indexing
Index more columns in the action table of the rollback DB to improve the performance of /rollback_checkmaster
parent
f9eb31f317
commit
380e1504eb
|
@ -242,8 +242,7 @@ bool RollbackManager::createTables()
|
||||||
" FOREIGN KEY (`oldNode`) REFERENCES `node`(`id`),\n"
|
" FOREIGN KEY (`oldNode`) REFERENCES `node`(`id`),\n"
|
||||||
" FOREIGN KEY (`newNode`) REFERENCES `node`(`id`)\n"
|
" FOREIGN KEY (`newNode`) REFERENCES `node`(`id`)\n"
|
||||||
");\n"
|
");\n"
|
||||||
"CREATE INDEX IF NOT EXISTS `actionActor` ON `action`(`actor`);\n"
|
"CREATE INDEX IF NOT EXISTS `actionIndex` ON `action`(`x`,`y`,`z`,`timestamp`,`actor`);\n",
|
||||||
"CREATE INDEX IF NOT EXISTS `actionTimestamp` ON `action`(`timestamp`);\n",
|
|
||||||
NULL, NULL, NULL));
|
NULL, NULL, NULL));
|
||||||
verbosestream << "SQL Rollback: SQLite3 database structure was created" << std::endl;
|
verbosestream << "SQL Rollback: SQLite3 database structure was created" << std::endl;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue