How to solve the problem of laravel throttle middleware failure

Source: Internet
Author: User
This article mainly introduces Laravel's throttle middleware failure Problem solving method, briefly analyzes the reasons of throttle middleware failure problem and puts forward the solution, which has certain reference value, the need of friends can refer to

In this paper, the solution of Laravel throttle middleware failure problem is described. Share to everyone for your reference, as follows:

According to the official explanation, access frequency limits are simple:

Route::get (' Test ', function () {  return ' Helle World ';}) ->middleware (' throttle ');

It is also true that the cache stores access times and makes judgments.

Previously, Zizaco/entrust (a role-based rights Management Pack) was used, in which the cache_driver=file in. Env was changed to Cache_driver=array. So the problem arises. The laravel supports a variety of cache drivers, file, Array, Db, Redis, and so on, but throttle seems to work with a file type of driver.

My changes are as follows:

vendor/illuminate/cache/ratelimiter.php file

Public function __construct (Cache $cache) {    $this->cache = $cache;} Public Function __construct () {    $this->cache = App (' Cache ')->driver (' file ');}

Change the top to the following. The throttle middleware also works.

The above is the whole content of this article, I hope that everyone's learning has helped, more relevant content please pay attention to topic.alibabacloud.com!

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.