File tree Expand file tree Collapse file tree 3 files changed +1
-99
lines changed
Expand file tree Collapse file tree 3 files changed +1
-99
lines changed Original file line number Diff line number Diff line change @@ -54,20 +54,6 @@ protected function schedule(Schedule $schedule)
5454}
5555```
5656
57- ---
58-
59- ### queue-metrics: migrate-discovery
60-
61- Migrate existing metrics to discovery sets.
62-
63- ``` bash
64- php artisan queue-metrics:migrate-discovery
65- ```
66-
67- ** Purpose** : One-time migration command to improve performance by using Redis sets for discovery instead of key scanning.
68-
69- ** When to run** : After upgrading from a version that didn't use discovery sets.
70-
7157## Recommended Schedule
7258
7359``` php
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2424use PHPeek \LaravelQueueMetrics \Commands \CleanupStaleWorkersCommand ;
2525use PHPeek \LaravelQueueMetrics \Config \QueueMetricsConfig ;
2626use PHPeek \LaravelQueueMetrics \Config \StorageConfig ;
27- use PHPeek \LaravelQueueMetrics \Console \Commands \MigrateToDiscoverySetsCommand ;
2827use PHPeek \LaravelQueueMetrics \Console \DetectStaleWorkersCommand ;
2928use PHPeek \LaravelQueueMetrics \Console \RecordTrendDataCommand ;
3029use PHPeek \LaravelQueueMetrics \Contracts \QueueInspector ;
@@ -72,8 +71,7 @@ public function configurePackage(Package $package): void
7271 ->hasCommand (CalculateBaselinesCommand::class)
7372 ->hasCommand (CleanupStaleWorkersCommand::class)
7473 ->hasCommand (DetectStaleWorkersCommand::class)
75- ->hasCommand (RecordTrendDataCommand::class)
76- ->hasCommand (MigrateToDiscoverySetsCommand::class);
74+ ->hasCommand (RecordTrendDataCommand::class);
7775 }
7876
7977 public function packageRegistered (): void
You can’t perform that action at this time.
0 commit comments