Skip to content
View kinnrot's full-sized avatar

Block or report kinnrot

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Pinned Loading

  1. encapsulate sucker punch queueing to... encapsulate sucker punch queueing to act same as delayed job or any other async task runner
    1
    class InProcessJob
    2
      unless Rails.env.test?
    3
        include SuckerPunch::Job
    4
        workers 1
    5
      end
  2. asynchronous awaited execution in ev... asynchronous awaited execution in event machine
    1
     def execute_awaited
    2
        fiber = Fiber.current
    3
        execute # run some non blocking code (return immidiatly)
    4
        self.callback do |response|
    5
          EventMachine.schedule do
  3. Implement distributed workflow over ... Implement distributed workflow over delayed job mongoid
    1
    class JobListItem
    2
      include Mongoid::Document
    3
      include Mongoid::Timestamps::Created
    4
    
                  
    5
      belongs_to :next_job, :class_name => "JobListItem", :inverse_of => :prev_job, optional: true
  4. kinnrot.github.io kinnrot.github.io Public

    HTML

  5. rails rails Public

    Forked from rails/rails

    Ruby on Rails

    Ruby