You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If worker=2, when octane starts, two independent worker processes will be created to load larravel. So every process will execute Octane:: tick ('simple ticker '...) once, so it should print out double 'octane' every 2 seconds, right?
thanks advance.
class AppServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
Octane::tick('simple-ticker', fn () =>var_dump('octane'))->seconds(2);
}
}
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
php artisan octane:start --workers=2
If worker=2, when octane starts, two independent worker processes will be created to load larravel. So every process will execute Octane:: tick ('simple ticker '...) once, so it should print out double 'octane' every 2 seconds, right?
thanks advance.
Beta Was this translation helpful? Give feedback.
All reactions