DEV Community

Discussion on: High Priority Fast Lane for the Minion Job Queue

Collapse
 
yukikimoto profile image
Yuki Kimoto - SPVM Author • Edited

what type of job is good for Job Queue?

I always yet use crontab to do my job.

Collapse
 
kraih profile image
Sebastian Riedel

Job queues allow you to process time and/or computationally intensive tasks in background processes, outside of the request/response lifecycle of web applications. Among those tasks you'll commonly find image resizing, spam filtering, HTTP downloads, building tarballs, warming caches and basically everything else you can imagine that's not super fast.

docs.mojolicious.org/Minion#DESCRI...

Collapse
 
yukikimoto profile image
Yuki Kimoto - SPVM Author

thank you for topic link.