0

Mainly when synchronizing via HTTP, the data must not be from cache. Is there a way, like query parameter in URL to bypass cache of any kind in Drupal.

Something like request-url?cache=0

Hao
  • 6,291
  • 9
  • 39
  • 88

1 Answers1

0

Check out "Cache exclude" module:

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

Or if you want to do it from code you can add following line at top of specific pages:

$GLOBALS['conf']['cache'] = FALSE;
MilanG
  • 6,994
  • 2
  • 35
  • 64