silverstripe-debugbar icon indicating copy to clipboard operation
silverstripe-debugbar copied to clipboard

[IMPROVEMENT] Display cached variables

Open a2nt opened this issue 7 years ago • 0 comments

It would be awesome to display cached variables: name, value, ttl

use SilverStripe\Core\Cache\FilesystemCacheFactory;
...
$cache = new FilesystemCacheFactory('data');
$this->cache = $cache->create('EventsAPI');
$this->cache->set('token', 'test', 3600);

a2nt avatar Jul 12 '18 11:07 a2nt