26.03.2026 | Pascal Crott

Clear plugin manager cache

my_module.module
\Drupal::service('plugin_id.manager')->clearCachedDefinitions();
// Clear entity_type plugin cache.
\Drupal::entityTypeManager()->clearCachedDefinitions();

Issue:

You want to clear a specific plugin cache.

Solution:

Use the snippet provided.

Weitere DevBits

13.11.2025 | Nikolas Kopp

Clear APC & Opcache

clear_cache.php
<?php

apcu_clear_cache();
opcache_reset();
php
drush
Drush
caching
cache
Debugging
debugging
debug