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 queue is an ordered, first-in-first-out data structure. Typical implementations of queues support pushing elements to the back and popping them off the front position.

learn more… | top users | synonyms

0
votes
2answers
65 views

Learning python and threading. I think my code runs infinitely. Help me find bugs?

So I've started learning python now, and I absolutely am in love with it. I'm building a small scale facebook data scraper. Basically, it will use the Graph API and scrape the first names of the ...
1
vote
2answers
403 views

Post Curl Custom Action to Facebook, via PHP in an Asychromous queue

I have successfully created a custom Facebook open graph action, and have been able to post it from my facebook app. However, Facebooks API to post, was slowing my user experience down, so I created a ...
0
votes
1answer
109 views

Queue of Facebook Graph API requestes(iOS)

How to make queue of API requests? So i've got some functions: ... - (void) getUserBasicInfo:(NSString *)stringWithContestOfId; - (void) getMyFriends; - (void) getMyEducation; ... I would like to ...