作者 邓超

es

... ... @@ -59,22 +59,12 @@ class AutoMail {
if(redis()->add('auto_mail_sync2',1,60)){
_echo('正在计算数据');
$maxId = $this->db->value("select `id` from `lists` order by `id` desc limit 1");
$id = 0;
while (1){
$ids = [];
for ($i=0;$i<1000;$i++){
$ids[] = $i+$id;
}
$id = end($ids);
if($id<($maxId-10000)){
continue;
}
redis()->rPush('auto_check_ids',implode(',',$ids));
$startId = $maxId-10000;
if($id>$maxId){
break;
}
foreach (minMaxToArray($startId,$maxId) as $ids){
redis()->rPush('auto_check_ids',implode(',',$ids));
}
_echo('计算完成');
}
... ...
... ... @@ -595,4 +595,37 @@ function base64_de_md5(string $str){
return base64_decode(implode('',$strs).'==');
}
/**
* 把最大最小之间的数生成 二维数组
* [[2,3,4],[5,6,7],....]
* @param $min
* @param $max
* @param int $len
* @return array
* @author:dc
* @time 2025/3/7 0:06
*/
function minMaxToArray($min, $max,$len=1000) {
$result = [];
$currentGroup = [];
for ($i = $min; $i <= $max; $i++) {
$currentGroup[] = $i;
// 每1000个数就创建一个新组
if (count($currentGroup) == $len) {
$result[] = $currentGroup;
$currentGroup = []; // 重置当前组
}
}
// 如果还有剩余的数,添加到结果中
if (!empty($currentGroup)) {
$result[] = $currentGroup;
}
return $result;
}
\ No newline at end of file
... ...