Example #1
0
File: Menu.php Project: aising/ding
 public function __construct($db = '')
 {
     $this->db = $db;
     Doo::loadClassAt('KVCache', 'default');
     $KVCache = new KVCache();
     $this->_redis = $KVCache->cfile();
 }
Example #2
0
 public function cacheKV()
 {
     Doo::loadClassAt('KVCache', 'default');
     $KVCache = new KVCache();
     return $this->_redis = $KVCache->redis();
 }