EndPointCorp / end-point-blog

End Point Dev blog
https://www.endpointdev.com/blog/
17 stars 65 forks source link

Comments for KISS: Slurping up File Attachments #659

Open phinjensen opened 6 years ago

phinjensen commented 6 years ago

Comments for https://www.endpointdev.com/blog/2012/06/kiss-slurping-file-attachments/ By Steph Skardal

To enter a comment:

  1. Log in to GitHub
  2. Leave a comment on this issue.
phinjensen commented 6 years ago
original author: Brian Gadoury
date: 2012-07-02T19:23:34-04:00

Honestly, for all the abusive things I've done with Resque in our DevCamps setup, it's been completely solid and carefree. It has a couple advantages over the "cron job running a rake task" approach that I found really nice. But, they're probably not terribly compelling unless they're handling something that's customer-facing (or at least used in higher volume by a bunch of internal users.)

Not as a defense of Resque, but rather just for the sake of argument, here's are the main things I like about Resque that one doesn't get with a sweet and simple corn job:

Again, these advantages are only advantages in some use cases, and I can see the validity of the simplicity argument as well. As you personally know, we initially started using Resque because we needed to decouple file uploads from post-processing (thumbnails!) while still getting the post-processing done as quickly as possible. That's clearly not exactly what you needed here.

-Phunk

phinjensen commented 6 years ago
original author: Steph Skardal
date: 2012-07-03T10:07:18-04:00

Thanks for your input Phunk. It looks like you should really be writing some blog articles based on this comment, eh?