search
HomePHP FrameworkLaravelAn in-depth explanation of queues and task scheduling in laravel6

(1) Queue implementation

In laravel, we only need to operate the queue to implement it. Implementation, on the premise of implementation, we need to perform simple configuration and modify config/queue.php. Please check the official documentation for details. I will not explain in detail here. Let’s go directly to the topic.

  1. First, by executing php artisan make:job task class name we can implement a queue task. After executing this command, Jobs will be generated in the app directory directory and create a new task class. This task class will automatically inherit the Illuminate\Contracts\Queue\ShouldQueue interface. Our queue will call the handle method of the task class, so we only need to go inside the handle. By implementing our specific business logic, we can easily implement the task class. At this time, we are processing our task class, so how should we allocate tasks for processing?
    An in-depth explanation of queues and task scheduling in laravel6

  2. In laravel, task distribution only needs to be done through simple implemented methods. We only need to specify the corresponding queue for the task. Distribution processing, the specific implementation method only requires the following simple lines of code to achieve task distribution.

    //任务指定到对应的队列
    $job = (new TestQueue())->onQueue('队列名称');
    //分发任务
    dispatch($job);
  3. After the queue is distributed, we run the php artisan queue:workqueue processor, which will process the tasks distributed to the queue. process, it will run until it is manually stopped or the terminal is closed. It should be noted that since the queue processor is a resident process and saves the started application state in the memory, when we modify the corresponding code, we need to restart the queue processor to load the modified code logic. . So when we modify the corresponding task class, we need to restart to ensure correctness.

  4. Supervisor configuration, the official document here explains it very clearly, there is no need for me to repeat the official document portal

(2) Task Scheduling

Here I directly quote the words of the official document, which is concise and easy to understand.

In the past, you might need to create a Cron entry for each scheduled task on the server. But this approach quickly becomes unfriendly because these task schedulers are not in the source code, and you need to log into the server through an SSH link every time to add a Cron entry.
The Laravel command line scheduler allows you to clearly and smoothly define command scheduling in Laravel. And when using this task scheduler, you only need to create a single Cron entry on your server. Your task schedule is defined in the schedule method of app/Console/Kernel.php.

  1. Task scheduling definition. In the official laravel documentation, we more commonly use task Artisan command scheduling and queue scheduling.

    //artisan命令调度
    $schedule->command('emails:send Taylor --force')->daily();
    //队列调度
    $schedule->job(new Heartbeat)->everyFiveMinutes();
    // 分发任务到「heartbeats」队列...
    $schedule->job(new Heartbeat, 'heartbeats')->everyFiveMinutes();
  2. The frequency of task calls, such as daily(), everyFiveMinutes(), etc. in the above steps, all limit the frequency of task calls. , it is not difficult to understand in a literal sense. In fact, it is set to be called once every minute or every day. The specific call is as follows (to sum up the length), you can also check the official documentation for details.

##->cron(' * * * * *');Customized Cron scheduled execution task->everyMinute();Execute the task once every minute ->everyFiveMinutes();Perform a task every five minutes->everyTenMinutes(); Perform a task every ten minutes##->everyFifteenMinutes();->everyThirtyMinutes();->hourly();->hourlyAt(17);->daily();->dailyAt('13:00' );->twiceDaily(1, 13);->weekly();->weeklyOn(1 , '8:00');->monthly();->monthlyOn(4, '15:00');->quarterly();->yearly();->timezone('America/New_York');
Method Description
Perform a task every fifteen minutes
Execute a task every thirty minutes
Perform the task every hour
Perform the task once every hour at the 17th minute
Execute a task at midnight every day (Translator's Note: zero o'clock every day)
Execute the task once every day at 13:00
Execute the task at 1:00 and 13:00 every day One task
Perform a task once a week
Execute the task every Monday at 8 o'clock
Execute every month One task
Execute the task once every month at 15:00 on the 4th
Perform the task once every quarter
Every year Execute a task
Set the time zone
Finally, of course, start the scheduler and execute
    * * * * * cd /project address&& php artisan schedule:run >> /dev/null 2>&1
  1. .
  2. (3) Summary

In fact, there is not much to say, but these two are usually crucial to our projects, and the official documents are too cumbersome. There is no need, just briefly talk about the commonly used methods. Laravel has encapsulated these common operations, which reduces a lot of trouble. If you are interested in understanding the implementation logic, at least know how to use it first.

Related recommendations:
The latest five Laravel video tutorials

The above is the detailed content of An in-depth explanation of queues and task scheduling in laravel6. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:csdn. If there is any infringement, please contact admin@php.cn delete
Using Laravel: Streamlining Web Development with PHPUsing Laravel: Streamlining Web Development with PHPApr 19, 2025 am 12:18 AM

Laravel optimizes the web development process including: 1. Use the routing system to manage the URL structure; 2. Use the Blade template engine to simplify view development; 3. Handle time-consuming tasks through queues; 4. Use EloquentORM to simplify database operations; 5. Follow best practices to improve code quality and maintainability.

Laravel: An Introduction to the PHP Web FrameworkLaravel: An Introduction to the PHP Web FrameworkApr 19, 2025 am 12:15 AM

Laravel is a modern PHP framework that provides a powerful tool set, simplifies development processes and improves maintainability and scalability of code. 1) EloquentORM simplifies database operations; 2) Blade template engine makes front-end development intuitive; 3) Artisan command line tools improve development efficiency; 4) Performance optimization includes using EagerLoading, caching mechanism, following MVC architecture, queue processing and writing test cases.

Laravel: MVC Architecture and Best PracticesLaravel: MVC Architecture and Best PracticesApr 19, 2025 am 12:13 AM

Laravel's MVC architecture improves the structure and maintainability of the code through models, views, and controllers for separation of data logic, presentation and business processing. 1) The model processes data, 2) The view is responsible for display, 3) The controller processes user input and business logic. This architecture allows developers to focus on business logic and avoid falling into the quagmire of code.

Laravel: Key Features and Advantages ExplainedLaravel: Key Features and Advantages ExplainedApr 19, 2025 am 12:12 AM

Laravel is a PHP framework based on MVC architecture, with concise syntax, powerful command line tools, convenient data operation and flexible template engine. 1. Elegant syntax and easy-to-use API make development quick and easy to use. 2. Artisan command line tool simplifies code generation and database management. 3.EloquentORM makes data operation intuitive and simple. 4. The Blade template engine supports advanced view logic.

Building Backend with Laravel: A GuideBuilding Backend with Laravel: A GuideApr 19, 2025 am 12:02 AM

Laravel is suitable for building backend services because it provides elegant syntax, rich functionality and strong community support. 1) Laravel is based on the MVC architecture, simplifying the development process. 2) It contains EloquentORM, optimizes database operations. 3) Laravel's ecosystem provides tools such as Artisan, Blade and routing systems to improve development efficiency.

Laravel framework skills sharingLaravel framework skills sharingApr 18, 2025 pm 01:12 PM

In this era of continuous technological advancement, mastering advanced frameworks is crucial for modern programmers. This article will help you improve your development skills by sharing little-known techniques in the Laravel framework. Known for its elegant syntax and a wide range of features, this article will dig into its powerful features and provide practical tips and tricks to help you create efficient and maintainable web applications.

The difference between laravel and thinkphpThe difference between laravel and thinkphpApr 18, 2025 pm 01:09 PM

Laravel and ThinkPHP are both popular PHP frameworks and have their own advantages and disadvantages in development. This article will compare the two in depth, highlighting their architecture, features, and performance differences to help developers make informed choices based on their specific project needs.

Laravel user login function listLaravel user login function listApr 18, 2025 pm 01:06 PM

Building user login capabilities in Laravel is a crucial task and this article will provide a comprehensive overview covering every critical step from user registration to login verification. We will dive into the power of Laravel’s built-in verification capabilities and guide you through customizing and extending the login process to suit specific needs. By following these step-by-step instructions, you can create a secure and reliable login system that provides a seamless access experience for users of your Laravel application.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

Video Face Swap

Video Face Swap

Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Tools

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)