调整产品setting表缓存时间

This commit is contained in:
lcc
2025-10-10 17:01:18 +08:00
parent f43f7f9c82
commit 83c8b22fe4
@@ -31,7 +31,7 @@ class Auto_product_setting_model extends HD_Model
if (!$cache->exists($cacheKey)) {
$row = $this->get(['product_id' => $productId, 'name' => $name]);
$result = $row['value'];
$cache->save($cacheKey, $result, 24*3600);
$cache->save($cacheKey, $result, 2*3600);
}
return $result;
}