Authored by 梁志锋

商品列表缓存时间缩短为5分钟

... ... @@ -191,7 +191,7 @@ class IndexModel
$result = Cache::get($key, 'master');
if (empty($result)) {
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
Cache::set($key, $data, 3600);
Cache::set($key, $data, 1800);
}
}
}
... ... @@ -299,7 +299,7 @@ class IndexModel
$result = Cache::get($key, 'master');
if (empty($result)) {
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
Cache::set($key, $article, 3600);
Cache::set($key, $article, 1800);
}
}
}
... ...
... ... @@ -57,7 +57,7 @@ class ListModel
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result, 1800); // 缓存30分钟
Cache::set($key, $result, 300); // 缓存5分钟
}
}
... ... @@ -140,7 +140,7 @@ class ListModel
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result, 1800); // 缓存30分钟
Cache::set($key, $result, 300); // 缓存5分钟
}
}
... ...