Tagged Questions

2
votes
1answer
1k views

Problems with starling/workling in production mode

I have a rails app that has asynchronous processing, and I'm having trouble getting it to work in production mode. i start starling from the root of the application like so: starling -d -P ...
2
votes
2answers
515 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
2answers
816 views

Phusion Passenger + Workling + RabbitMQ

I am trying to deploy a RoR app that does some asynchronous task. I use workling for that and the message queue is RabbitMQ. This combination worked flawlessly with Starling but we decided to change ...
0
votes
3answers
233 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
407 views

Ways to monitor Workling instances in a Rails app

I'm currently using Workling with Starling on a rails app. Although I like Workling, I find it kinda hard to monitor. To make matters worse, I have a couple of Workling instances. Workling is running ...