App下載

詞條

大約有 7,000 項符合查詢結(jié)果 ,庫內(nèi)數(shù)據(jù)總量為 78,250 項。(搜索耗時:0.0046秒)

4261.Laravel 8 先決條件

...tifications:table 命令來生成一個包含相應(yīng)的數(shù)據(jù)表的遷移:php artisan notifications:table php artisan migrate

http://www.o2fo.com/laravel_8/laravel_8-zi7w3hsc.html

4262.Laravel 8 自定義通道

...該方法應(yīng)該接收兩個參數(shù): $notifiable 和 $notification:<?php namespace App\Channels; use Illuminate\Notifications\Notification; class VoiceChannel { /** * 發(fā)送指定的通知。 * * @param mixed $notifiable * @param \Illuminate\Notifications\Notification $notification * @retur...

http://www.o2fo.com/laravel_8/laravel_8-jpi53ht4.html

4263.Laravel 8 配置

...nction boot() { $this->publishes([ __DIR__.'/path/to/config/courier.php' => config_path('courier.php'), ]); } 現(xiàn)在,當(dāng)擴(kuò)展包的用戶執(zhí)行 Laravel 的 vendor:publish 命令,擴(kuò)展包文件將被復(fù)制到指定的目錄中,發(fā)布配置后,就可以像其它配置...

http://www.o2fo.com/laravel_8/laravel_8-8r363htd.html

4264.Laravel 8 連接 Vs. 隊列

...「連接」和「隊列」之間的區(qū)別非常重要。 在 config/queue.php 配置文件中,有一個 connections 配置選項。 此選項定義到后端服務(wù)(如 Amazon SQS、Beanstalk 或 Redis)的特定連接。 然而,任何給定的隊列連接都可能有多個「隊列」,這...

http://www.o2fo.com/laravel_8/laravel_8-e38a3htu.html

4265.Laravel 8 數(shù)據(jù)庫

要使用 database 隊列驅(qū)動程序,你需要一個數(shù)據(jù)庫表來保存任務(wù)。要生成創(chuàng)建此表的遷移,請運行 queue:table Artisan 命令。一旦遷移已經(jīng)創(chuàng)建,你可以使用 migrate 命令遷移你的數(shù)據(jù)庫:php artisan queue:table php artisan migrate

http://www.o2fo.com/laravel_8/laravel_8-slq23htw.html

4266.Laravel 8 其他驅(qū)動的先決條件

列出的隊列驅(qū)動需要如下的依賴: Amazon SQS: aws/aws-sdk-php ~3.0Beanstalkd: pda/pheanstalk ~4.0Redis: predis/predis ~1.0 或 phpredis PHP 擴(kuò)展

http://www.o2fo.com/laravel_8/laravel_8-kzmx3hty.html

4267.Laravel 8 最大嘗試次數(shù)

...的其中一個方法是,通過 Artisan 命令行上的 --tries 開關(guān):php artisan queue:work --tries=3Copy但是,可以采用更細(xì)粒度的方法:定義任務(wù)類本身的最大嘗試次數(shù)。如果在任務(wù)類上指定了最大嘗試次數(shù),它將優(yōu)先于命令行上提供的值:<?p...

http://www.o2fo.com/laravel_8/laravel_8-4ywv3huf.html

4268.Laravel 8 任務(wù)批處理

...表??梢允褂?Artisan 命令 queue:batches-table 生成此遷移:php artisan queue:batches-table php artisan migrate

http://www.o2fo.com/laravel_8/laravel_8-q16e3hul.html

4269.Laravel 8 隊列優(yōu)先級

...你可能希望優(yōu)先考慮如何處理隊列。例如,在 config/queue.php 中,你可以將你的 redis 連接的默認(rèn) queue 設(shè)置為 low。然而,有時你可能希望將一個任務(wù)推到一個 high 優(yōu)先級隊列,就像這樣:dispatch((new Job)->onQueue('high')); 要啟動...

http://www.o2fo.com/laravel_8/laravel_8-5jp33huw.html

4270.Laravel 8 運行隊列處理器

...將一直保持運行,直到它被手動停止或你關(guān)閉你的終端:php artisan queue:work 技巧:為了讓 queue:work 進(jìn)程永久地在后臺運行,您應(yīng)該使用一個進(jìn)程監(jiān)視器,如 Supervisor,以確保隊列 worker 不會停止運行。 請記住,隊列處理器是長生...

http://www.o2fo.com/laravel_8/laravel_8-l5rk3huy.html

抱歉,暫時沒有相關(guān)的微課

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的視頻課程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

抱歉,暫時沒有相關(guān)的教程

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

4261.Laravel 8 先決條件

...tifications:table 命令來生成一個包含相應(yīng)的數(shù)據(jù)表的遷移:php artisan notifications:table php artisan migrate

http://www.o2fo.com/laravel_8/laravel_8-zi7w3hsc.html

4262.Laravel 8 自定義通道

...該方法應(yīng)該接收兩個參數(shù): $notifiable 和 $notification:<?php namespace App\Channels; use Illuminate\Notifications\Notification; class VoiceChannel { /** * 發(fā)送指定的通知。 * * @param mixed $notifiable * @param \Illuminate\Notifications\Notification $notification * @retur...

http://www.o2fo.com/laravel_8/laravel_8-jpi53ht4.html

4263.Laravel 8 配置

...nction boot() { $this->publishes([ __DIR__.'/path/to/config/courier.php' => config_path('courier.php'), ]); } 現(xiàn)在,當(dāng)擴(kuò)展包的用戶執(zhí)行 Laravel 的 vendor:publish 命令,擴(kuò)展包文件將被復(fù)制到指定的目錄中,發(fā)布配置后,就可以像其它配置...

http://www.o2fo.com/laravel_8/laravel_8-8r363htd.html

4264.Laravel 8 連接 Vs. 隊列

...「連接」和「隊列」之間的區(qū)別非常重要。 在 config/queue.php 配置文件中,有一個 connections 配置選項。 此選項定義到后端服務(wù)(如 Amazon SQS、Beanstalk 或 Redis)的特定連接。 然而,任何給定的隊列連接都可能有多個「隊列」,這...

http://www.o2fo.com/laravel_8/laravel_8-e38a3htu.html

4265.Laravel 8 數(shù)據(jù)庫

要使用 database 隊列驅(qū)動程序,你需要一個數(shù)據(jù)庫表來保存任務(wù)。要生成創(chuàng)建此表的遷移,請運行 queue:table Artisan 命令。一旦遷移已經(jīng)創(chuàng)建,你可以使用 migrate 命令遷移你的數(shù)據(jù)庫:php artisan queue:table php artisan migrate

http://www.o2fo.com/laravel_8/laravel_8-slq23htw.html

4266.Laravel 8 其他驅(qū)動的先決條件

列出的隊列驅(qū)動需要如下的依賴: Amazon SQS: aws/aws-sdk-php ~3.0Beanstalkd: pda/pheanstalk ~4.0Redis: predis/predis ~1.0 或 phpredis PHP 擴(kuò)展

http://www.o2fo.com/laravel_8/laravel_8-kzmx3hty.html

4267.Laravel 8 最大嘗試次數(shù)

...的其中一個方法是,通過 Artisan 命令行上的 --tries 開關(guān):php artisan queue:work --tries=3Copy但是,可以采用更細(xì)粒度的方法:定義任務(wù)類本身的最大嘗試次數(shù)。如果在任務(wù)類上指定了最大嘗試次數(shù),它將優(yōu)先于命令行上提供的值:<?p...

http://www.o2fo.com/laravel_8/laravel_8-4ywv3huf.html

4268.Laravel 8 任務(wù)批處理

...表??梢允褂?Artisan 命令 queue:batches-table 生成此遷移:php artisan queue:batches-table php artisan migrate

http://www.o2fo.com/laravel_8/laravel_8-q16e3hul.html

4269.Laravel 8 隊列優(yōu)先級

...你可能希望優(yōu)先考慮如何處理隊列。例如,在 config/queue.php 中,你可以將你的 redis 連接的默認(rèn) queue 設(shè)置為 low。然而,有時你可能希望將一個任務(wù)推到一個 high 優(yōu)先級隊列,就像這樣:dispatch((new Job)->onQueue('high')); 要啟動...

http://www.o2fo.com/laravel_8/laravel_8-5jp33huw.html

4270.Laravel 8 運行隊列處理器

...將一直保持運行,直到它被手動停止或你關(guān)閉你的終端:php artisan queue:work 技巧:為了讓 queue:work 進(jìn)程永久地在后臺運行,您應(yīng)該使用一個進(jìn)程監(jiān)視器,如 Supervisor,以確保隊列 worker 不會停止運行。 請記住,隊列處理器是長生...

http://www.o2fo.com/laravel_8/laravel_8-l5rk3huy.html

抱歉,暫時沒有相關(guān)的文章

w3cschool 建議您:

  • 檢查輸入的文字是否有誤

熱門課程