From 630b08af82c44aca6b02cbd6063590c4514d8c00 Mon Sep 17 00:00:00 2001 From: Alex Pott <alex.a.pott@googlemail.com> Date: Mon, 4 Aug 2014 11:28:47 +0100 Subject: [PATCH] Issue #2309575 by undertext | damiankloip: Remove the null and memory backend definitions from core.services.yml in favour of devel module providing them instead. --- core/core.services.yml | 4 ---- sites/example.settings.local.php | 3 --- 2 files changed, 7 deletions(-) diff --git a/core/core.services.yml b/core/core.services.yml index a58f7796b8f5..355958a26390 100644 --- a/core/core.services.yml +++ b/core/core.services.yml @@ -38,10 +38,6 @@ 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: diff --git a/sites/example.settings.local.php b/sites/example.settings.local.php index 1847f865fe50..99cfcc476d5b 100644 --- a/sites/example.settings.local.php +++ b/sites/example.settings.local.php @@ -17,9 +17,6 @@ $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. * -- GitLab