I'm building one of my first facebook apps, and I'm in a bit of a bind as to the most efficient way to solve this problem:
My app's mySQL db has a table containing users, and a table containing activities. I need to be able to show a user which of their friends is participating in which activity. Many users can participate in each activity, but a user can only participate in one activity.
What is the best way to approach this problem? Is there a way to query FB for my user's friends, compare that to my table of users, take the matches and return their selected activities to the user efficiently enough to not take for ever to load? If anyone could point me in the right direction for this it would be much appreciated.
SELECT activity FROM users WHERE user_id in (1,2,3,4,5...), return results. You can cache the user's friend list for some time if they're likely to see this app page frequently. – Dan Grossman Dec 18 '10 at 4:10