1

How can I determine all existing cache keys in a project built with Laravel framework?

Amr
  • 4,274
  • 6
  • 41
  • 58

1 Answers1

1

There is a no way to do this via Laravel Cache library. But you can try to get the keys directly from the cache storage (filesystem, memcached, etc.)

Can Celik
  • 1,912
  • 19
  • 29
zsolt.k
  • 663
  • 3
  • 6
  • 1
    There is a no way via the Laravel Cache library... But you can do this directly from the storage service/files. – zsolt.k Mar 14 '16 at 22:52