Active Job: Difference between revisions

From Expertiza_Wiki
Jump to navigation Jump to search
(ychen71@introduction added)
 
No edit summary
Line 2: Line 2:
Active Job is a framework help developers writing codes and run them on the background automatically under different scenarios. Jobs can vary from schedule newsletter, follow-up emails to database housekeeping. It’s a interface that adapts different queueing backends like Backburner[https://github.com/nesquena/backburner], Delayed Job[https://github.com/collectiveidea/delayed_job], Qu[https://github.com/bkeepers/qu] and so on. [http://guides.rubyonrails.org/4_2_release_notes.html] Overall, Active Job is a interface which you can work with common queues.
Active Job is a framework help developers writing codes and run them on the background automatically under different scenarios. Jobs can vary from schedule newsletter, follow-up emails to database housekeeping. It’s a interface that adapts different queueing backends like Backburner[https://github.com/nesquena/backburner], Delayed Job[https://github.com/collectiveidea/delayed_job], Qu[https://github.com/bkeepers/qu] and so on. [http://guides.rubyonrails.org/4_2_release_notes.html] Overall, Active Job is a interface which you can work with common queues.


In Rails, the concept of streaming first appeared in [http://guides.rubyonrails.org/4_2_release_notes.html], and is further optimized in Rails 4.
__TOC__
__TOC__



Revision as of 14:25, 31 January 2016

Introduction

Active Job is a framework help developers writing codes and run them on the background automatically under different scenarios. Jobs can vary from schedule newsletter, follow-up emails to database housekeeping. It’s a interface that adapts different queueing backends like Backburner[1], Delayed Job[2], Qu[3] and so on. [4] Overall, Active Job is a interface which you can work with common queues.

Active Job adapters[5]