Removed dropping and recreating cc_schedule table index before inserting into this table.

We thought it would be a significant performance booster but it isn't
This commit is contained in:
denise 2013-05-28 16:19:17 -04:00
parent 8f418fb34c
commit 9545d8aacb
3 changed files with 0 additions and 18 deletions

View file

@ -527,10 +527,6 @@ class Application_Model_Scheduler
$linked = false;
$dropIndex_sql = "DROP INDEX cc_schedule_instance_id_idx";
Application_Common_Database::prepareAndExecute(
$dropIndex_sql, array(), Application_Common_Database::EXECUTE);
foreach ($scheduleItems as $schedule) {
$id = intval($schedule["id"]);
@ -817,11 +813,6 @@ class Application_Model_Scheduler
}//for each instance
}//for each schedule location
$createIndex_sql = "CREATE INDEX cc_schedule_instance_id_idx ".
"ON cc_schedule USING btree(instance_id)";
Application_Common_Database::prepareAndExecute(
$createIndex_sql, array(), Application_Common_Database::EXECUTE);
$endProfile = microtime(true);
Logging::debug("finished adding scheduled items.");
Logging::debug(floatval($endProfile) - floatval($startProfile));