From 09b0283675f938c89a2c541b6649deb10e7c5040 Mon Sep 17 00:00:00 2001 From: Dries Buytaert Date: Tue, 18 May 2010 18:26:30 +0000 Subject: - Patch #692044 by Damien Tournoud, effulgentsia: a site with statistics module enabled is much slower in serving cached pages in D7 than in D6. --- modules/update/update.module | 4 ---- 1 file changed, 4 deletions(-) (limited to 'modules/update/update.module') diff --git a/modules/update/update.module b/modules/update/update.module index 02bdabaef..1704fdfff 100644 --- a/modules/update/update.module +++ b/modules/update/update.module @@ -653,9 +653,6 @@ function theme_update_last_check($variables) { /** * Store data in the private update status cache table. * - * Note: this function completely ignores the {cache_update}.headers field - * since that is meaningless for the kinds of data we're caching. - * * @param $cid * The cache ID to save the data with. * @param $data @@ -671,7 +668,6 @@ function _update_cache_set($cid, $data, $expire) { $fields = array( 'created' => REQUEST_TIME, 'expire' => $expire, - 'headers' => NULL, ); if (!is_string($data)) { $fields['data'] = serialize($data); -- cgit v1.2.3