访问某些 URL 时绕过 Drupal 缓存的简单方法

Easy way to bypass cache in Drupal when visit certain URL

主要是HTTP同步时,数据不能来自缓存。有没有办法,比如 URL 中的查询参数来绕过 Drupal 中任何类型的缓存。

类似于request-url?cache=0

检查 "Cache exclude" 模块:

https://www.drupal.org/project/cacheexclude

或者,如果您想通过代码执行此操作,您可以在特定页面的顶部添加以下行:

$GLOBALS['conf']['cache'] = FALSE;