romanzipp / Laravel-Queue-Monitor

Monitoring Laravel Jobs with your Database
https://packagist.org/packages/romanzipp/laravel-queue-monitor
MIT License
698 stars 92 forks source link

fix: cast jobId to string because job_id column indexed in database is varchar #146

Closed NguyenUoc98 closed 6 months ago

NguyenUoc98 commented 6 months ago

Because job_id column indexed in database is varchar, if not cast $jobId to string, query is slow, not use index in query

Example with 2M rows in database: Before image

After image