From 42fcd43299246ecd1b265fcfcdd01a60319cf378 Mon Sep 17 00:00:00 2001 From: tstarling Date: Tue, 10 Apr 2012 10:36:30 +1000 Subject: [PATCH] Remove request_with_session/request_without_session Remove wfIncrStats() calls for request_with_session and request_without_session. These cause a high load on the profiler and are not currently needed for performance analysis. Change-Id: I0ed1e87574c7c9eeaee4e503db86b862ff0995bb --- includes/Setup.php | 2 -- 1 file changed, 2 deletions(-) diff --git a/includes/Setup.php b/includes/Setup.php index 32cd75c46c..68a715f09c 100644 --- a/includes/Setup.php +++ b/includes/Setup.php @@ -468,11 +468,9 @@ if ( !wfIniGetBool( 'session.auto_start' ) ) { if ( !defined( 'MW_NO_SESSION' ) && !$wgCommandLineMode ) { if ( $wgRequest->checkSessionCookie() || isset( $_COOKIE[$wgCookiePrefix . 'Token'] ) ) { - wfIncrStats( 'request_with_session' ); wfSetupSession(); $wgSessionStarted = true; } else { - wfIncrStats( 'request_without_session' ); $wgSessionStarted = false; } } -- 2.20.1