Paperclip Background Processing

I have been using paperclip and delayed_job for quite some time. delayed_paperclip gem acts for me with beautiful glue. This helps me to transfer the heavy processing of other styles to slow-motion jobs processed on a production server. It's also nice to know if attachments are in the queue or are being processed.

Now my problem is that delayed_paperclip is not supported since 4 months, and the paper clip is taking big steps forward. So I'm stuck.

Can someone give me a hint what can I use as an alternative?

I do not want to get away from paperclip and delayed_job, if possible. Also, attachments must be processed on another server.

+4
source share
1 answer

There seemed to be some paperclip updates that broke this stone. There are pending tensile requests, but until they are accepted and the new gem has not been released, you can refer to the updated stone in your Gemfile as follows:

gem 'delayed_paperclip', :git => 'git://github.com/tommeier/delayed_paperclip.git', :ref => '98a8b9e0c24d24c94e2c9c39a704c1b07c5c4d6b' 
+3
source

Source: https://habr.com/ru/post/1414601/


All Articles