r60654 MediaWiki - Code Review archive

Repository:MediaWiki
Revision:r60653‎ | r60654 | r60655 >
Date:10:23, 5 January 2010
Author:demon
Status:ok
Tags:
Comment:
Only cache author list for 1 day. The only thing using this is the AuthorListView, and I dont like waiting 3 days for new commiters to show up
Modified paths:
  • /trunk/extensions/CodeReview/backend/CodeRepository.php (modified) (history)

Diff [purge]

Index: trunk/extensions/CodeReview/backend/CodeRepository.php
@@ -122,7 +122,7 @@
123123 while ( $row = $dbr->fetchObject( $res ) ) {
124124 $authors[] = $row->cr_author;
125125 }
126 - $wgMemc->set( $key, $authors, 3600 * 24 * 3 );
 126+ $wgMemc->set( $key, $authors, 3600 * 24 );
127127 return $authors;
128128 }
129129

Status & tagging log