Tagged Questions
5
votes
4answers
3k views
installing starling on windows
I am trying to install the starling gem on my windows machine. But, whenever I try to install it i get this error:
Building native extensions. This could take a while...
ERROR: Error installing ...
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
397 views
Sinatra message Queue
Starling is a great (at least for small projects) and simple message queue, however, it doesn't actually manage or start workers that consume the queues. Workling does this for Rails projects, but ...
1
vote
3answers
759 views
Working with Starling and multiple instances of Mongrel through Mongrel Cluster
Situation:
In a typical cluster setup, I have a 5 instances of mongrel running behind Apache 2.
In one of my initializer files, I schedule a cron task using Rufus::Scheduler which basically ...
0
votes
1answer
92 views
How do you run or install starling under RVM?
I installed the starling gem under rvm, but there's problem starting starling because it expects permission to write to /var/spool/starling, and installing starling under rvm doesn't give it the ...
0
votes
1answer
138 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
240 views
Workling return store not retreiving value from set
In my apps/controllers/model_controller.rb I have (names of models/methods changed to protect the innocent):
def background_sync
@background_task_uid = Model.async_process_model_cache({:name => ...