首页 > 代码库 > php_redis::connetct()

php_redis::connetct()

:"今天看了这代码,

 

 1 public function get_company_by_id($company_id, $CACHE_CLEAR=FALSE) 2 { 3     $cachekey = ‘global:x_table|id:‘.$company_id; 4     if ($CACHE_CLEAR) { 5         $this->cache->del($cachekey); 6     } else { 7         $data = $this->cache->get($cachekey, CACHE_EXPIRE_WEEK); 8         if (FALSE !== $data) { 9             return $data;10         }11     }12 13     $o = $this->db->fetch_single(‘SELECT * FROM x_table WHERE id="‘.$company_id.‘" LIMIT 1‘);14     if ($o) {15         $this->cache->set($cachekey, $o, CACHE_EXPIRE_WEEK);16         return $o;17     }18 19     return FALSE;20 }

 

有领悟了。我们的redis仅仅是是在mysql之前的对加速查询做的缓存?那么其相对于memcached的优势就没有体现,那么为什么不直接用memcached呢?"

:“开始是mysql,后来我们引入了memcached;觉得memcached不支持集群,也不好用,于是我们就引入了redis。”

:“那我为什么我们不全部用redis?”

:“那样要改整个代码啊”

 

php_redis::connetct()