This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| class GetEventResult | |
| @queue = :events | |
| def self.perform(event_id, attempt=0) | |
| event = Event.find(event_id) | |
| Rails.logger.info "Fetching results for event ##{event.id} (#{event.name})..." | |
| begin | |
| results = EventImporter.new(event.datetime.to_date).get_results(event) | |
| rescue OpenURI::HTTPError |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| module EventMachine | |
| # A simple iterator for concurrent asynchronous work. | |
| # | |
| # Unlike ruby's built-in iterators, the end of the current iteration cycle is signaled manually, | |
| # instead of happening automatically after the yielded block finishes executing. For example: | |
| # | |
| # (0..10).each{ |num| } | |
| # | |
| # becomes: | |
| # |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| require 'rubygems' | |
| require 'sinatra' | |
| require 'redis' | |
| # To use, simply start your Redis server and boot this | |
| # example app with: | |
| # ruby example_note_keeping_app.rb | |
| # | |
| # Point your browser to http://localhost:4567 and enjoy! | |
| # |
NewerOlder