diff options
author | Jon Moss <maclover7@users.noreply.github.com> | 2016-01-27 22:18:06 -0500 |
---|---|---|
committer | Jon Moss <maclover7@users.noreply.github.com> | 2016-01-27 22:18:06 -0500 |
commit | b2fe263fa66755521ba845a64dcbe3a1d86e3ff6 (patch) | |
tree | 5962e78188621bff688cff1cd5cef1859a999497 /activejob/lib | |
parent | a447252ac4c97b06df271c04ddd7530014dd8c86 (diff) | |
parent | 0db5882bb09231f3d7ae40e3554eb67599b11d57 (diff) | |
download | rails-b2fe263fa66755521ba845a64dcbe3a1d86e3ff6.tar.gz rails-b2fe263fa66755521ba845a64dcbe3a1d86e3ff6.tar.bz2 rails-b2fe263fa66755521ba845a64dcbe3a1d86e3ff6.zip |
Merge pull request #23291 from maclover7/suckerpunch-docs-update
Update sucker_punch adapter's description
Diffstat (limited to 'activejob/lib')
-rw-r--r-- | activejob/lib/active_job/queue_adapters/sucker_punch_adapter.rb | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/activejob/lib/active_job/queue_adapters/sucker_punch_adapter.rb b/activejob/lib/active_job/queue_adapters/sucker_punch_adapter.rb index 1037084341..311109e958 100644 --- a/activejob/lib/active_job/queue_adapters/sucker_punch_adapter.rb +++ b/activejob/lib/active_job/queue_adapters/sucker_punch_adapter.rb @@ -5,12 +5,10 @@ module ActiveJob # == Sucker Punch adapter for Active Job # # Sucker Punch is a single-process Ruby asynchronous processing library. - # It's girl_friday and DSL sugar on top of Celluloid. With Celluloid's - # actor pattern, we can do asynchronous processing within a single process. - # This reduces costs of hosting on a service like Heroku along with the - # memory footprint of having to maintain additional jobs if hosting on - # a dedicated server. All queues can run within a single Rails/Sinatra - # process. + # This reduces the cost of of hosting on a service like Heroku along + # with the memory footprint of having to maintain additional jobs if + # hosting on a dedicated server. All queues can run within a + # single application (eg. Rails, Sinatra, etc.) process. # # Read more about Sucker Punch {here}[https://github.com/brandonhilkert/sucker_punch]. # |