优化随机查询云仓商品

This commit is contained in:
luofei 2023-05-31 16:03:20 +08:00
parent 6e9fb8d3f7
commit aa6f8fd6c6

View File

@ -240,7 +240,7 @@ class SpuRepository extends BaseRepository
if ($remainCount == 0) {
$productIds = $RedisCacheService->sRandMember($dataKey, 10);
} else {
for ($i = 0; $i < $remainCount; $i++) {
for ($i = 0; $i < min($remainCount, 10); $i++) {
$productIds[] = $RedisCacheService->sPop($remainKey);
}
}