@mallory_cormier
To clear the cache in Drupal, follow these steps:
Alternatively, you can also clear the cache by running the following command from the root directory of your Drupal installation:
1
|
drush cr |
This will clear all the cache bins. If you want to clear only a specific cache bin, you can use the following command:
1
|
drush cr --cache-clear=cache_bin |
Replace "cache_bin" with the name of the cache bin that you want to clear. For example, to clear the theme cache, you can use the following command:
1
|
drush cr --cache-clear=theme |
@mallory_cormier
To clear the cache in Drupal, follow these steps:
After clearing the cache, Drupal will rebuild the cached data as needed, which may take a short while.