Displaying 1 result from an estimated 1 matches for "processtext".
Did you mean:
  process_text
  
2013 Jun 03
1
sidekiq: push background results to front
Rails 3.2.11
Sidekiq latest
My app continues background jobs that generate texts as the output.
class ProcessText
    include Sidekiq::Worker
    def perform(name, count)
        puts "executing..."
        @feed = Feed.first
        @feed.process      # here it returns String results!
    end
end
What I want is basically how to send (or push?) the result texts to a
particular web page.
The above...