Skip to content
Snippets Groups Projects
  1. Oct 02, 2015
  2. Sep 30, 2015
  3. Sep 29, 2015
  4. Sep 28, 2015
  5. Sep 25, 2015
  6. Sep 24, 2015
  7. Sep 22, 2015
  8. Sep 21, 2015
  9. Sep 18, 2015
    • Bruno Nocera Zanette's avatar
      Add Resque Support · b4d3d217
      Bruno Nocera Zanette authored
      * For it to work, it depends on Redis server is running.
      - To install: '$ apt-get install redis-server'
      - To execute: '$ redis-server'
      
      * To add new worker's tasks:
      
      - Create a new class, with the template below:
      class SampleWorker
      @queue = :sample_work
      def self.perform(params)
      end
      end
      
      - Enqueue new jobs:
      Resque.enqueue(SampleWorker, params)
      
      * To monitor jobs' status, access: '<rails_server>/resque'
      b4d3d217
  10. Sep 16, 2015
  11. Sep 15, 2015
  12. Sep 11, 2015
  13. Sep 09, 2015
  14. Sep 04, 2015
  15. Sep 03, 2015
  16. Sep 02, 2015
  17. Aug 28, 2015
  18. Aug 27, 2015
  19. Aug 26, 2015
  20. Aug 24, 2015
  21. Aug 23, 2015
  22. Aug 21, 2015
  23. Aug 19, 2015
  24. Aug 18, 2015
  25. Aug 17, 2015
Loading