multiple workers? #51
-
The readme mentions "multiple worker processes", but I couldn't find any other indication in the docs and code indicating the library does indeed support multiple workers. |
Beta Was this translation helpful? Give feedback.
Answered by
RealOrangeOne
Jun 13, 2024
Replies: 1 comment
-
Multiple workers is supported by running the |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
RealOrangeOne
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Multiple workers is supported by running the
db_worker
management command multiple times. Any process management etc should be managed externally. Each process will only run 1 task at a time, so for increased throughput you'll need to run multiple worker processes.