How to get all cached keys with certain prefix from the Cache in Laravel?
Is there a way in newer laravel versions to cache many things with a certain prefix and then get all by doing Cache::get('prefix_*) or something ? I'm trying to cache the Online Users for like 5 minutes and I want…