From: Tim Starling Date: Tue, 28 Feb 2006 05:16:31 +0000 (+0000) Subject: documentation X-Git-Tag: 1.6.0~262 X-Git-Url: https://git.cyclocoop.org//%22?a=commitdiff_plain;h=8d7d6e92bc8adca5c69164bc456cb0e91062376c;p=lhc%2Fweb%2Fwiklou.git documentation --- diff --git a/includes/LinksUpdate.php b/includes/LinksUpdate.php index d74574e4fd..bcfb0c340f 100644 --- a/includes/LinksUpdate.php +++ b/includes/LinksUpdate.php @@ -167,8 +167,8 @@ class LinksUpdate { $this->mDb->delete( $table, array( $fromField => $this->mId ), $fname ); if ( count( $insertions ) ) { # The link array was constructed without FOR UPDATE, so there may be collisions - # Ignoring for now, I'm not sure if that causes problems or not, but I'm fairly - # sure it's better than without IGNORE + # This may cause minor link table inconsistencies, which is better than + # crippling the site with lock contention. $this->mDb->insert( $table, $insertions, $fname, array( 'IGNORE' ) ); } }