Answers:
是。
参见drupal_page_get_cache()
bootstrap.inc:
if (drupal_page_is_cacheable()) {
$cache = cache_get($base_root . request_uri(), 'cache_page');
if ($cache !== FALSE) {
$cache_hit = TRUE;
}
return $cache;
}
request_uri()
返回整个路径,包括任何GET参数。