Skip to content
Snippets Groups Projects
Commit fd8f71cb authored by Angie Byron's avatar Angie Byron
Browse files

Issue #2309575 follow-up by Wim Leers: [Revert] Remove the null and memory...

Issue #2309575 follow-up by Wim Leers: [Revert] Remove the null and memory backend definitions from core.services.yml in favour of devel module providing them instead.
parent eda0bc57
Branches
Tags
2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
......@@ -38,6 +38,10 @@ services:
class: Drupal\Core\Cache\ApcuBackendFactory
cache.backend.php:
class: Drupal\Core\Cache\PhpBackendFactory
cache.backend.memory:
class: Drupal\Core\Cache\MemoryBackendFactory
cache.backend.null:
class: Drupal\Core\Cache\NullBackendFactory
cache.bootstrap:
class: Drupal\Core\Cache\CacheBackendInterface
tags:
......
......@@ -17,6 +17,9 @@
$config['system.performance']['css']['preprocess'] = FALSE;
$config['system.performance']['js']['preprocess'] = FALSE;
// Disable the render cache, by using the Null cache back-end.
$settings['cache']['bins']['render'] = 'cache.backend.null';
/**
* Enable access to rebuild.php.
*
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment