I use resque to process pictures and upload to s3 with paperclip in background. But every worker will load whole rails instance about 120MB~150MB.
I found this tutorial could deal with background job without loading rails. http://railscasts.com/episodes/243-beanstalkd-and-stalker
How could I manipulate paperclip with stalker, or the other better solutions?
Thanks.