Authored by 周奇琪

Merge branch 'master' of git.dev.yoho.cn:web/yohobuy

... ... @@ -33,7 +33,7 @@ class Cache
* @param int $expire 缓存有效期(单位秒, 0表示永久)
* @return void
*/
public static function set($key, $value, $expire = 3600)
public static function set($key, $value, $expire = 300)
{
try {
// WINDOWS
... ...
... ... @@ -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分钟
}
}
... ...
... ... @@ -58,7 +58,7 @@ class SearchModel
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result, 1800); // 缓存30分钟
Cache::set($key, $result, 600); // 缓存10分钟
}
}
... ... @@ -116,7 +116,7 @@ class SearchModel
}
// 接口调用正常,数据封装完成, 则设置一级(master)和二级(slave)数据缓存
else {
Cache::set($key, $result, 1800); // 缓存30分钟
Cache::set($key, $result, 600); // 缓存10分钟
}
}
... ...