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.

I want to implement facebook like updates in my project. I'm looking for the way how facebook did it.

What will be the best technology to develop this kind of functionality. How user interface and javascript should work for this functionality.

My goal is to digg out, what big players like facebook do on server side to manage update kind of functionality.

share|improve this question
Side note: you've added tags for all languages that not mentioned in your question. Generally it is not a problem for non-browser apps (c#/Java/C++) to read data from servers in either push or pull mode... While text of your question talks about JavaScript... – Alexei Levenkov Nov 29 '12 at 6:33
I tagged this question with all these languages, because i want answer expert guy in any area. This is not language oriented question. This is architecture oriented question. I want to know how how can a heavy work load can be handled on server side almost in real time. – Deepak Rohilla Nov 29 '12 at 9:07
Sorry, but have you read your question? There is absolutely nothing about server side in it... Please consider putting more information about your actual goals into future questions. (Note that adding such information would not make this question more appropriate for SO due to expected scope...) – Alexei Levenkov Nov 29 '12 at 16:30
Thanks Alexei for your suggestion. – Deepak Rohilla Nov 30 '12 at 4:32
3  
if you are interestd about how Facebook implements bunch of things, read through the Facebook Engineering page (facebook.com/Engineering) notes. Of course, these notes will not give you all the details, and they also cover tons of other stuff besides the specific things you care, as Facebook does a lot more things. But some of the notes do provide high-level details on the web architecture. – Franci Penov Nov 30 '12 at 5:40

closed as not constructive by Michael Petrotta, Shivan Raptor, home, jogojapan, Alexei Levenkov Nov 29 '12 at 6:29

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

To make such live update feature, you can do polling the server (in a regular time interval) to pull new contents.

share|improve this answer
This is how client will interact with server. My question is what should be done on server side to provide updates with heavy load. – Deepak Rohilla Nov 29 '12 at 9:04
1  
load balancing, minimize the data transfer & caching are the techniques. – Shivan Raptor Nov 29 '12 at 9:10
Shivan i agree with you, But can you tell me how it is happening in facebook. – Deepak Rohilla Nov 29 '12 at 10:04
1  
Facebook uses Java as backend, PHP as frontend. For more architecture stuff, ask Mark Z. – Shivan Raptor Nov 29 '12 at 10:16

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