-
Hi everyone, I was checking out the Quirrel noticed that there is mention of fanout jobs on the home page, but I couldn't find any documentation about them. I was able to get it a cron job working on my local host, but of course that doesn't create fan out jobs. Does this automatically fan out on serverless functions or do i use the exclusive peremeter or something? Any insights or resources would be greatly appreciated. Thank you! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 6 replies
-
Hi @fotoflo! Sorry for the late reply, I was on PTO :D To implement a fan-out job, you can create a |
Beta Was this translation helpful? Give feedback.
Hi @fotoflo! Sorry for the late reply, I was on PTO :D
To implement a fan-out job, you can create a
Queue
and then call.enqueue
or.enqueueMany
on it, to create jobs that will be processed in other serverless functions.