Skip to content

Commit 6f66969

Browse files
committed
docs update
1 parent 2f331d0 commit 6f66969

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

docs/index.md

+5
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,11 @@ If you use `database` handler:
2626
- Oracle 12.1+
2727
- SQLite3
2828

29+
If you use `Redis` (you still need a relational database to store failed jobs):
30+
31+
- PHPRedis
32+
- Predis
33+
2934
### Table of Contents
3035

3136
* [Installation](installation.md)

docs/running-queues.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -65,11 +65,12 @@ This way, worker will consume jobs with the `low` priority and then with `high`.
6565

6666
### Running many instances of the same queue
6767

68-
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.
68+
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.
69+
Only for SQLite3, PHPRedis and Predis driver, this setting is not relevant.
6970

7071
### Handling long-running process
7172

72-
If we decide to run the long process e.g. with the command:
73+
If we decide to run the long process, e.g., with the command:
7374

7475
php spark queue:work emails -wait 10
7576

mkdocs.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ extra:
5353
site_url: https://queue.codeigniter.com/
5454
repo_url: https://github.com/codeigniter4/queue
5555
edit_uri: edit/develop/docs/
56-
copyright: Copyright © 2023 CodeIgniter Foundation.
56+
copyright: Copyright © 2025 CodeIgniter Foundation.
5757

5858
markdown_extensions:
5959
- admonition

0 commit comments

Comments
 (0)