...
|
...
|
@@ -258,12 +258,12 @@ class UserModel |
|
|
* @param int $uid 用户ID
|
|
|
* @return array|mixed 处理之后的优惠券数据
|
|
|
*/
|
|
|
public static function getCouponData($uid, $status)
|
|
|
public static function getCouponData($uid)
|
|
|
{
|
|
|
$result = array();
|
|
|
|
|
|
// 调用接口获取优惠券数据
|
|
|
$coupons = UserData::couponData($uid, $status);
|
|
|
$coupons = UserData::couponData($uid);
|
|
|
|
|
|
// 处理优惠券数据
|
|
|
if (!empty($coupons['unused'])) {
|
...
|
...
|
@@ -307,6 +307,15 @@ class UserModel |
|
|
{
|
|
|
$result = array();
|
|
|
|
|
|
if (USE_CACHE) {
|
|
|
$key = CacheConfig::KEY_ACTION_ADDRESS_LIST_DATA;
|
|
|
// 先尝试获取一级缓存(master), 有数据则直接返回.
|
|
|
$result = Cache::get($key, 'master');
|
|
|
if (!empty($result)) {
|
|
|
return $result;
|
|
|
}
|
|
|
}
|
|
|
|
|
|
// 调用接口获取地址列表数据
|
|
|
$address = UserData::addressListData($uid);
|
|
|
|
...
|
...
|
@@ -315,6 +324,17 @@ class UserModel |
|
|
$result = $address['data'];
|
|
|
}
|
|
|
|
|
|
if (USE_CACHE) {
|
|
|
// 接口调用异常时, 不害怕,从我们的二级缓存(slave)里再取数据.
|
|
|
if (empty($result)) {
|
|
|
$result = Cache::get($key, 'slave');
|
|
|
}
|
|
|
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
|
|
|
else {
|
|
|
Cache::set($key, $result, 1800); // 缓存30分钟
|
|
|
}
|
|
|
}
|
|
|
|
|
|
return $result;
|
|
|
}
|
|
|
|
...
|
...
|
|