yingzi 2 anos atrás
pai
commit
4f0367bc58

+ 0 - 1
Cache/FinanceCache.Class.php

@@ -160,7 +160,6 @@ class FinanceCache
     public function getAllSalesOutReceive() {
         $data = [];
         $keysList = $this->cache->keys($this->salesOutReceiveKey.'*');
-        var_dump($keysList);
         foreach ($keysList as $value) {
             $keyArr = explode('::', $value);
             $result = $this->cache->zrangebyscore($this->salesOutReceiveKey.'::'.$keyArr[2], 0,  time(),array('withscores' => TRUE));

+ 0 - 1
Mall/Framework/Cache/Redis.Class.php

@@ -576,7 +576,6 @@ class Redis extends Storage
     public function keys($key)
     {
         $key = $this->prefix . $key;
-        var_dump($key);
         return $this->resource->keys($key);
     }