| Current Path : /home/users/unlimited/www/admin.ondemand.codeskitter.site/vendor/codeigniter4/queue/docs/ |
| Current File : /home/users/unlimited/www/admin.ondemand.codeskitter.site/vendor/codeigniter4/queue/docs/index.md |
# CodeIgniter Queue Documentation
A library that helps you handle Queues in the CodeIgniter 4 framework.
Add job to the queue.
```php
service('queue')->push('queueName', 'jobName', ['array' => 'parameters']);
```
Listen for queued jobs.
php spark queue:work queueName
### Requirements
- PHP 8.1+
- CodeIgniter 4.3+
If you use `database` handler:
- MySQL 8.0.1+
- MariaDB 10.6+
- PostgreSQL 9.5+
- SQL Server 2012+
- Oracle 12.1+
- SQLite3
### Table of Contents
* [Installation](installation.md)
* [Configuration](configuration.md)
* [Basic usage](basic-usage.md)
* [Running queues](running-queues.md)
* [Commands](commands.md)
* [Troubleshooting](troubleshooting.md)
### Acknowledgements
Every open-source project depends on its contributors to be a success. The following users have
contributed in one manner or another in making this project:
<a href="https://github.com/codeigniter4/queue/graphs/contributors">
<img src="https://contrib.rocks/image?repo=codeigniter4/queue" alt="Contributors">
</a>
Made with [contrib.rocks](https://contrib.rocks).