如何在laravel 5.7

时间:2018-10-05 19:13:06

标签: laravel redis queue rate-limiting laravel-5.7

问题

使用带有Redis的Laravel 5.7,我已经使用How to send the password reset link via email using queue in laravel 5中Stephen Mudere的答案中描述的方法将电子邮件验证和密码重置通知排队,但是我无法弄清楚如何对那些特定的排队通知进行速率限制。因为我的应用程序会出于多种原因(不仅是这两个目的)发送电子邮件,而且我的电子邮件服务器的速率限制为每分钟30封电子邮件,所以我需要对“电子邮件”队列中的所有内容进行速率限制。

背景

对于Laravel队列documentation,使用handle方法在作业类中执行此操作似乎很简单

Redis::throttle('key')->allow(10)->every(60)->then(function () {
  // Job logic...
}, function () {
  // Could not obtain lock...

  return $this->release(10);
});

问题在于我不是在使用工作类别,而是在使用通知。例如,对于密码重置,我创建了以下

ResetPassword Class
namespace App\Notifications;

use Illuminate\Bus\Queueable;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Auth\Notifications\ResetPassword as ResetPasswordNotification;

class ResetPassword extends ResetPasswordNotification implements ShouldQueue
{
    use Queueable;
}

使用以下方法从用户模型中调用:

public function sendPasswordResetNotification($token)
{
        $this->notify(new ResetPasswordNotification($token));
}

方法

我试图通过修改用户模型中的sendPasswordResetNotification函数来解决此问题:

public function sendPasswordResetNotification($token)
{
    Redis::throttle('email')->allow(2)->every(60)->then(function () use($token) {
        $this->notify(new ResetPasswordNotification($token));
    }, function () {
        // Could not obtain lock...

        return $this->release(10);
    });
}

请注意,出于测试目的,节气门的值人为降低。这似乎部分起作用。在上面的示例中,如果我尝试了两次连续的密码重置,则电子邮件将同时排队并发送。当我尝试发送第三封电子邮件(超出我设置的每分钟2个限制)时,我收到BadMethodCallException "Call to undefined method App\User::release()"。我知道这是因为User模型没有释放方法,但是又回到了我不确定确切在哪里或如何使用限制逻辑的问题。有没有办法修改它以使其工作,或者我需要采用一种完全不同的方法来发送这些消息吗?

更新:由于其他原因而失败的替代方法

我从使用通知切换为使用作业,以便可以根据文档使用Redis :: throttle。为了设置作业以使消息排队,我使用了How to queue Laravel 5.7 "email verification" email sending中的方法。这样可以很好地发送排队的电子邮件。然后,我试图限制要排入队列的工作。这是我完整的方法:

use App\User;
use Illuminate\Bus\Queueable;
use Illuminate\Queue\SerializesModels;
use Illuminate\Queue\InteractsWithQueue;
use Illuminate\Contracts\Queue\ShouldQueue;
use Illuminate\Foundation\Bus\Dispatchable;
use Illuminate\Auth\Notifications\VerifyEmail;
use Illuminate\Support\Facades\Redis;

class QueuedVerifyEmail implements ShouldQueue
{
    use Dispatchable, InteractsWithQueue, Queueable, SerializesModels;

    protected $user;

    public function __construct(User $user)
    {
        $this->user = $user;
    }

    public function handle()
    {
        Redis::throttle('email')->allow(2)->every(60)->then(function () {
            $this->user->notify(new VerifyEmail);
        }, function() {
           return $this->release(10);
        });
    }
}

这些进入队列,但是失败。在堆栈跟踪中如下所示: Symfony\Component\Debug\Exception\FatalThrowableError: Class 'App\Jobs\Redis' not found in /home/vagrant/code/myapp/app/Jobs/QueuedVerifyEmail.php:27

当我有一个use语句来定义正确的位置时,我不知道为什么要在App \ Jobs中寻找Redis外观。

1 个答案:

答案 0 :(得分:0)

我开始工作了

“更新:替代方法”下的解决方案最终奏效。我不确定为什么它会失败(也许某些东西被缓存了吗?),但是现在看来它可以正常工作。