mirror of
https://github.com/misskey-dev/misskey.git
synced 2026-05-17 05:35:31 +02:00
Set job concurrency to reduce performance issue
This commit is contained in:
@@ -7,6 +7,6 @@ const jobs = {
|
||||
|
||||
export default function(q: Bull.Queue) {
|
||||
for (const [k, v] of Object.entries(jobs)) {
|
||||
q.process(k, v as any);
|
||||
q.process(k, 16, v as any);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user