Skip to content

Instantly share code, notes, and snippets.

@lcatlett
Last active August 10, 2022 16:18
Show Gist options
  • Save lcatlett/9e327ed82dc9f574b3efb11089fe6336 to your computer and use it in GitHub Desktop.
Save lcatlett/9e327ed82dc9f574b3efb11089fe6336 to your computer and use it in GitHub Desktop.
Generate list of corrupted route caches in Drupal 9
SELECT `cid`, `data`, `expire`, `created`, `serialized`, `tags`, `checksum` FROM `cache_data` WHERE (`data` NOT LIKE '%parameters%') AND (`data` NOT LIKE '%access%') AND (`tags` = 'route_match') LIMIT 0,1000;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment