Skip to content

Instantly share code, notes, and snippets.

@fer-ri
Created June 12, 2014 14:35
Show Gist options
  • Save fer-ri/ef6e114d80f09d1088ba to your computer and use it in GitHub Desktop.
Save fer-ri/ef6e114d80f09d1088ba to your computer and use it in GitHub Desktop.
Delete Laravel Cache By Pattern
<?php
foreach (Cache::getMemory() as $cacheKey => $cacheValue)
{
if (strpos($cacheKey, 'mypackage') !== false)
{
Cache::forget($cacheKey);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment