标签: cakephp cakephp-2.5
有时候我需要使用id来编写临时密钥。
例如:Cache::write('tsi_' . $tid, 1, '5m');
Cache::write('tsi_' . $tid, 1, '5m');
有没有办法通过前缀检索所有密钥(寻找tsi_xxxx)?
使用cakephp 2.5.3
答案 0 :(得分:1)
直接来自CakePHP你不能这样做。但是可以在缓存引擎中实现从缓存中获取密钥的可能性(对于memcahed,它可能类似于Memcached :: getAllKeys())。