https://github.com/ilzrv/laravel-queue-size
The missing queue:size command
https://github.com/ilzrv/laravel-queue-size
laravel laravel-queue laravel-queue-size
Last synced: 3 months ago
JSON representation
The missing queue:size command
- Host: GitHub
- URL: https://github.com/ilzrv/laravel-queue-size
- Owner: ilzrv
- License: mit
- Created: 2020-04-09T19:19:31.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2021-12-04T13:49:56.000Z (almost 4 years ago)
- Last Synced: 2025-06-14T13:53:23.634Z (5 months ago)
- Topics: laravel, laravel-queue, laravel-queue-size
- Language: PHP
- Homepage:
- Size: 20.5 KB
- Stars: 7
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Laravel Queue Size Command
[![Latest Version on Packagist][ico-version]][link-packagist]
[![Software License][ico-license]](LICENSE)
[![Build Status][ico-tests]][link-tests]
[![Total Downloads][ico-downloads]][link-downloads]
This package offers an artisan command to check queue size in your application.
## Installation
You can install the package via composer:
``` bash
composer require ilzrv/laravel-queue-size
```
## Usage
To check the queue size you can use this command:
```bash
php artisan queue:size
```
To check the size of another queue:
```bash
php artisan queue:size --queue=awesome-queue
```
To check the size of another connection:
```bash
php artisan queue:size redis --queue=awesome-queue
```
### License
The Laravel Queue Size Command is open-sourced software licensed under the [MIT license](http://opensource.org/licenses/MIT)
[ico-version]: https://img.shields.io/packagist/v/ilzrv/laravel-queue-size
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg
[ico-tests]: https://github.com/ilzrv/laravel-queue-size/workflows/tests/badge.svg
[ico-downloads]: https://img.shields.io/packagist/dt/ilzrv/laravel-queue-size
[link-packagist]: https://packagist.org/packages/ilzrv/laravel-queue-size
[link-tests]: https://github.com/ilzrv/laravel-queue-size/actions?query=workflow:tests
[link-downloads]: https://packagist.org/packages/ilzrv/laravel-queue-size