Authored by hf

code review by hf: modify guang plusstar cache key add gender to unique

... ... @@ -131,7 +131,7 @@ class PlusstarData
// 客户端类型
$clientType = $isApp ? 'iphone' : 'h5';
$isUidOk = $uid && is_numeric($uid);
$key = CacheConfig::KEY_ACTION_GUANG_PLUSTAR_DATA . strval($id) . $clientType;
$key = CacheConfig::KEY_ACTION_GUANG_PLUSTAR_DATA . sprintf('_%s_%s_%s', $id, $clientType, $gender);
if (USE_CACHE) {
// 先尝试获取一级缓存(master), 有数据则直接返回.
... ...