Tagged Questions
2
votes
2answers
815 views
Job queue alternatives to workling for use with rails 3?
Workling appears to be incompatible with rails 3. What alternatives are there for dealing with work queues in a rails 3 application?
2
votes
2answers
511 views
Starling: How to speed up the queue
I've launched a website today which makes heavy use of Starling and Workling to handle the background task queue.
Traffic has been heavy and although my server CPU/memory has not been under too much ...
1
vote
1answer
155 views
How can I synchronize multiple Workling workers?
I have the following situation:
Three tasks: A,B,C (Implemented as Workling workers)
Two user events (Calls of a controller method)
The tasks are triggered this way:
The first user event ...
0
votes
3answers
227 views
Need a ruby solution for executing a method in separate process
I am implementing a poller service whose interface looks like this.
poller = Poller.new(SomeClass)
poller.start
poller.stop
The start method is supposed to continuously start hitting an http ...
0
votes
1answer
139 views
Workling worker cannot find newly added record
I'm using Starling and Workling to process background tasks in my application, a Swoopo-style auction site. In this case the background task is a notification system that monitors auctions and ...
0
votes
2answers
964 views
Ruby daemon hangs on rails load
I am having issues getting a workling daemon working correctly. When I run:
ruby script/workling_client run
the daemon starts to load rails, but hangs indefintely. When I kill the process, the ...