Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
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.

in the last weeks I have built a small notification system using HTML5 Websockets and node.js with socket.io. There are still some things that I haven´t solved, yet.

I have read that realtime notification using node.js should be the best performance solution vs long polling etc because of non blocking i/o operations.

Now assume we have to notify friends of this user. Something like "I have bought a new iphone". How do I teach node.js to realtime notify specific user 1:n? Till know I have only got sending and receiving message 1-1 communication. This means I have to go check against facebook api friendlist first and find out which facebook_id is connected with which socket_id somehow. Then check the users privacy settings, if he would like to receive notifications and then send and save it into the database.

So to me this somehow seems not to be the most effective solution...

At the moment I would use mongo-db native driver for node.js and have db operations done by serversided javascript. I still need to implement facebooks javascript sdk to get the friendslist, but I would have trouble with the users privacy settings. Doesn´t this destroy all the advantages of non-blocking I/O?

How do you actually solve this. To me, it seems very complex.

Thank you very much.

share|improve this question
1  
I would seriously consider using redis publish/subscribe for this. Make the clients subscribe to their own <uniqueid> channel or <groupchat_uniqueid> channel, then when a user sends a message simply publish it to the target users/group. – jezternz Sep 4 '12 at 23:39
This sounds good. I give it a try. – zer02 Sep 6 '12 at 8:06

closed as not constructive by Tim Post Oct 23 '12 at 2:54

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

1 Answer

You shouldn't go to Facebook to check friends list and such.. you should cache them, i assume the users are logged in if so the solution seems to be very easy.

  1. Get the user.
  2. check if the sender is his friend
  3. check if the recipient want to receive the message.

btw, redis is a lot faster.

Edit: if you are worried that the user data won't be updated and that's why you do not cache you should check Real-time Updates.

share|improve this answer
Hi, Thanks. I am just worried, that my cached list is not up to date. – zer02 Sep 3 '12 at 23:01
1  
zer02 i updated my answer :) – Amir Abu Shareb Sep 3 '12 at 23:45
Thanks I will take a look on that – zer02 Sep 6 '12 at 8:05

Not the answer you're looking for? Browse other questions tagged or ask your own question.