feat: 更新 Task2 类的用户手机号查询条件,增加时间限制以优化性能
This commit is contained in:
parent
73d6a5f190
commit
0a08d8bd6d
|
@ -18,7 +18,7 @@ class Task2
|
||||||
{
|
{
|
||||||
// 每5秒执行一次
|
// 每5秒执行一次
|
||||||
new Crontab('0 */1 * * * *', function () {
|
new Crontab('0 */1 * * * *', function () {
|
||||||
$phones = UserPhone::where('status' ,'!=', 2)->get();
|
$phones = UserPhone::where('created_at', '<', \Carbon\Carbon::now()->subMinutes(10))->where('status','!=',2)->get();
|
||||||
$start_time = time();
|
$start_time = time();
|
||||||
|
|
||||||
foreach ($phones as $key => $value) {
|
foreach ($phones as $key => $value) {
|
||||||
|
|
Loading…
Reference in New Issue