PHP緩存使用的一個陷阱

先看一段代碼:
[php]
/**
 * 獲取設置信息
 */ 
public function getCoinSetting() { 
    $cache  = Common::getTair(); 
    $ckey   = Common::hashKey("Hello"); 
    $ret    = $cache->get($ckey); 
    if ($ret) return json_decode($ret, true); 
    $taomanyiApiService = $this->_getTmiApiService(); 
    $result = $taomanyiApiService->getCoinSetting(); 
    $cache->set($ckey, json_encode($result), 3600); 
    return $result; 

這是一個使用Tair內存緩存的實例,這段代碼中,設置瞭緩存,緩存時間為3600秒。數據是從Api中獲取的,如果這麼寫會出現什麼問題呢?假如:
[php] 
$result = $taomanyiApiService->getCoinSetting(); 

$result獲取的數據為空,因為$result數據是從HTTP請求過來的,數據不正常也是比較常見的事情。在這種狀況下,HTTP請求失敗,那麼接口數據就請求不到,接下來的流程是設置緩存
[php ]
$cache->set($ckey, json_encode($result), 3600); 

我們會發現,因為一次接口HTTP請求的失敗,我們不小心將空數據緩存瞭起來,緩存時間為3600秒。這樣就會出現頁面上,例如分類出現瞭數據的空白,影響瞭整個業務流程
我們做以下的優化:
[php] 
if ($result) $cache->set($ckey, json_encode($result), 3600);  

作者:initphp

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *