Speed up post update for gsid

This commit is contained in:
Michael Vogel 2020-06-14 18:09:59 +02:00
parent cf384da4b7
commit 6b93a7e395

View file

@ -893,7 +893,7 @@ class PostUpdate
} }
/** /**
* update the "gsid" (global server id) field in the contact table * update the "gsid" (global server id) field in the contact table
* *
* @return bool "true" when the job is done * @return bool "true" when the job is done
* @throws \Friendica\Network\HTTPException\InternalServerErrorException * @throws \Friendica\Network\HTTPException\InternalServerErrorException
@ -925,7 +925,7 @@ class PostUpdate
$id = $contact['id']; $id = $contact['id'];
DBA::update('contact', DBA::update('contact',
['gsid' => GServer::getID($contact['baseurl']), 'baseurl' => GServer::cleanURL($contact['baseurl'])], ['gsid' => GServer::getID($contact['baseurl'], true), 'baseurl' => GServer::cleanURL($contact['baseurl'])],
['id' => $contact['id']]); ['id' => $contact['id']]);
++$rows; ++$rows;
@ -946,7 +946,7 @@ class PostUpdate
} }
/** /**
* update the "gsid" (global server id) field in the apcontact table * update the "gsid" (global server id) field in the apcontact table
* *
* @return bool "true" when the job is done * @return bool "true" when the job is done
* @throws \Friendica\Network\HTTPException\InternalServerErrorException * @throws \Friendica\Network\HTTPException\InternalServerErrorException
@ -959,7 +959,7 @@ class PostUpdate
return true; return true;
} }
$id = DI::config()->get("system", "post_update_version_1349_id", 0); $id = DI::config()->get("system", "post_update_version_1349_id", '');
Logger::info('Start', ['apcontact' => $id]); Logger::info('Start', ['apcontact' => $id]);
@ -978,7 +978,7 @@ class PostUpdate
$id = $apcontact['url']; $id = $apcontact['url'];
DBA::update('apcontact', DBA::update('apcontact',
['gsid' => GServer::getID($apcontact['baseurl']), 'baseurl' => GServer::cleanURL($apcontact['baseurl'])], ['gsid' => GServer::getID($apcontact['baseurl'], true), 'baseurl' => GServer::cleanURL($apcontact['baseurl'])],
['url' => $apcontact['url']]); ['url' => $apcontact['url']]);
++$rows; ++$rows;
@ -999,7 +999,7 @@ class PostUpdate
} }
/** /**
* update the "gsid" (global server id) field in the gcontact table * update the "gsid" (global server id) field in the gcontact table
* *
* @return bool "true" when the job is done * @return bool "true" when the job is done
* @throws \Friendica\Network\HTTPException\InternalServerErrorException * @throws \Friendica\Network\HTTPException\InternalServerErrorException
@ -1031,7 +1031,7 @@ class PostUpdate
$id = $gcontact['id']; $id = $gcontact['id'];
DBA::update('gcontact', DBA::update('gcontact',
['gsid' => GServer::getID($gcontact['server_url']), 'server_url' => GServer::cleanURL($gcontact['server_url'])], ['gsid' => GServer::getID($gcontact['server_url'], true), 'server_url' => GServer::cleanURL($gcontact['server_url'])],
['id' => $gcontact['id']]); ['id' => $gcontact['id']]);
++$rows; ++$rows;