Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

A Ruby library to queue and defer processing of slow methods like sending email and image resizing.

learn more… | top users | synonyms

0
votes
0answers
55 views

delayed_job not executing properly a koala job

I have a method using koala that fetches all the contacts of a user that has signed up to my app through facebook. If I run it "live", it works. However it takes a long time, so I delayed it. Thing ...
0
votes
1answer
148 views

How do I update my model with an each do loop and delayed_job?

I'm gathering data with the Facebook API and get_object requests with Koala are slow, so I'm trying to use delayed_job_active_record. However, I am having difficulty updating my model with the each do ...
3
votes
2answers
868 views

How to throttle Delayed job to not anger the Facebook API

I'm building an app that will be hitting the Facebook graph api a lot. I learned they have a rate limit of 600 requests every 600 seconds. I'm using delayed job for all my background processing. What ...