Index: wp-includes/cache.php
===================================================================
--- wp-includes/cache.php	(revision 20090)
+++ wp-includes/cache.php	(working copy)
@@ -534,7 +534,7 @@
 	 * @access private
 	 */
 	protected function _exists($key, $group) {
-		return is_array( $this->cache[$group] ) && array_key_exists( $key, $this->cache[$group] );
+		return isset( $this->cache[$group] ) && is_array( $this->cache[$group] ) && array_key_exists( $key, $this->cache[$group] );
 	}
 
 	/**
