Skip to content

Instantly share code, notes, and snippets.

@amcgowanca
Created September 10, 2017 14:16
Show Gist options
  • Save amcgowanca/d13cb09b5566333e38ae7bda4d02b590 to your computer and use it in GitHub Desktop.
Save amcgowanca/d13cb09b5566333e38ae7bda4d02b590 to your computer and use it in GitHub Desktop.
Drupal 8: Disable cache entirely...
<?php
$cache_bins = array('bootstrap','config', 'data','default','discovery', 'dynamic_page_cache', 'entity','menu','migrate','render','rest','static','toolbar');
foreach ($cache_bins as $bin) {
$settings['cache']['bins'][$bin] = 'cache.backend.null';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment