Skip to content

Commit

Permalink
docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
michalsn committed Jan 7, 2025
1 parent 2f331d0 commit 6f66969
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,11 @@ If you use `database` handler:
- Oracle 12.1+
- SQLite3

If you use `Redis` (you still need a relational database to store failed jobs):

- PHPRedis
- Predis

### Table of Contents

* [Installation](installation.md)
Expand Down
5 changes: 3 additions & 2 deletions docs/running-queues.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,11 +65,12 @@ This way, worker will consume jobs with the `low` priority and then with `high`.

### Running many instances of the same queue

As mentioned above, sometimes we may want to have multiple instances of the same command running at the same time. The queue is safe to use in that scenario with all databases if you keep the `skipLocked` to `true` in the config file. Only for SQLite3 driver this setting is not relevant.
As mentioned above, sometimes we may want to have multiple instances of the same command running at the same time. The queue is safe to use in that scenario with all databases if you keep the `skipLocked` to `true` in the config file.
Only for SQLite3, PHPRedis and Predis driver, this setting is not relevant.

### Handling long-running process

If we decide to run the long process e.g. with the command:
If we decide to run the long process, e.g., with the command:

php spark queue:work emails -wait 10

Expand Down
2 changes: 1 addition & 1 deletion mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ extra:
site_url: https://queue.codeigniter.com/
repo_url: https://github.com/codeigniter4/queue
edit_uri: edit/develop/docs/
copyright: Copyright © 2023 CodeIgniter Foundation.
copyright: Copyright © 2025 CodeIgniter Foundation.

markdown_extensions:
- admonition
Expand Down

0 comments on commit 6f66969

Please sign in to comment.