|
1 | 1 | # JoobQ
|
2 | 2 |
|
3 |
| - [](https://www.codacy.com/manual/eliasjpr/joobq?utm_source=github.com&utm_medium=referral&utm_content=eliasjpr/joobq&utm_campaign=Badge_Grade) |
| 3 | + |
4 | 4 |
|
5 | 5 | JoobQ is a fast, efficient asynchronous reliable job queue scheduler library processing. Jobs are submitted
|
6 | 6 | to a job queue, where they reside until they are able to be scheduled to run in a
|
7 | 7 | compute environment.
|
8 | 8 |
|
9 |
| -**Features:** |
| 9 | +#### Features: |
10 | 10 |
|
11 | 11 | - [x] Priority queues based on number of workers
|
12 | 12 | - [x] Reliable queue
|
@@ -41,6 +41,7 @@ shards install
|
41 | 41 | ## Requirements
|
42 | 42 |
|
43 | 43 | This project uses REDIS with the TimeSeries module loaded. The Redis TimeSeries is used to monitor stats of job execution the module is free for use and easy to configure. Follow the guidelines at [redistimeseries.io](https://oss.redislabs.com/redistimeseries/)
|
| 44 | + |
44 | 45 | ### Loading and Configuring Redis TimeSeries
|
45 | 46 |
|
46 | 47 | Use **DUPLICATE POLICY FIRST** to ignore duplicate stats entries
|
@@ -73,31 +74,13 @@ Defining Queues: Queues are of type `Hash(String, Queue(T))` where the name of t
|
73 | 74 | - **Name:** `queue:email`
|
74 | 75 | - **Number Workers:** 10
|
75 | 76 |
|
76 |
| -```crystal |
77 |
| -require "joobq" |
78 |
| -``` |
79 |
| - |
80 |
| -**Environment variables** |
81 |
| - |
82 |
| -```shell |
83 |
| -REDIS_HOST=localhost |
84 |
| -REDIS_PORT=6379 |
85 |
| -REDIS_POOL_SIZE=50 |
86 |
| -REDIS_TIMEOUT=0.2 |
87 |
| -``` |
88 |
| - |
89 |
| -## Defining Queues |
90 |
| - |
91 |
| -Defining Queues: Queues are of type `Hash(String, Queue(T))` where the name of the key matches the name of the Queue. |
92 |
| - |
93 |
| -### Properties |
94 |
| - |
95 |
| -- **Name:** `queue:email` |
96 |
| -- **Number Workers:** 10 |
| 77 | +### Example |
97 | 78 |
|
98 | 79 | ```crystal
|
99 | 80 | module JoobQ
|
100 |
| - QUEUES = { "queue:email" => Queue(EmailJob).new("queue:email", 10)} |
| 81 | + QUEUES = { "queue:priority:high" => Queue(EmailJob).new("queue:priority:high", 20)} |
| 82 | + QUEUES = { "queue:priority:medium" => Queue(EmailJob).new("queue:priority:medium", 10)} |
| 83 | + QUEUES = { "queue:priority:low" => Queue(EmailJob).new("queue:priority:low", 2)} |
101 | 84 | end
|
102 | 85 | ```
|
103 | 86 |
|
|
128 | 111 | ### Executing Job
|
129 | 112 |
|
130 | 113 | ```crystal
|
131 |
| - EmailJob.perform(email_address: "[email protected]") |
132 |
| - EmailJob.perform(within: 1.hour, email_address: "[email protected]") |
| 114 | + # Perform Immediately |
| 115 | + EmailJob.new(email_address: "[email protected]").perform |
| 116 | +
|
| 117 | + # Async - Adds to Queue |
| 118 | + EmailJob.perform(email_address: "[email protected]") |
| 119 | + |
| 120 | + # Delayed |
| 121 | + EmailJob.perform(within: 1.hour, email_address: "[email protected]") |
| 122 | + |
| 123 | + # Recurring at given interval |
| 124 | + EmailJob.run(every: 1.second, x: 1) |
133 | 125 | ```
|
| 126 | + |
134 | 127 | ## Defining And Scheduling Recurring Jobs
|
135 | 128 |
|
136 | 129 | ```crystal
|
|
0 commit comments