How facebook notification will work internally ?

The_Small_k

The_Small_k

@the-small-k Oct 26, 2024
hello friend's
Really it's nice to see that one of your friend comment on your post and automatically a red color notification will displayed on the header.
.
After concentrating on some point i found that may be they use database event like "trigger" to fire the query but how that event will affect automatically on the view part of our application.
may be they use ajax to refresh that portion of page but how that database event can be use to affect the view part.
.
Do anyone have idea how trigger is used to affect the view part automatically ?

Replies

Welcome, guest

Join CrazyEngineers to reply, ask questions, and participate in conversations.

CrazyEngineers powered by Jatra Community Platform

  • Manish Goyal

    Manish Goyal

    @manish-r2Hoep Oct 14, 2012

    Till last week, I was only thinking, all this implemented through ajax requests, but last week when i was implementing Push Notifications feature then i found it is not ajax at all, it is something like this

    Server itself sends data to system which user is shown on his side

    Correct me if i am wrong
  • The_Small_k

    The_Small_k

    @the-small-k Oct 15, 2012

    In facebook we are just sitting ideal in front of pc and notification will appear on header. Here we are not creating any event but we get a notification due to any other members event(commented on some post or sending friend request).
    .
    I think it's database event(may be trigger). When my friend or any member commented on my post database is updated and it work like an event that is used to show notification on the header part.
    Am i right ?
    .
    But still i am not able to find how that database event will be used to affect the view part.
  • Ankita Katdare

    Ankita Katdare

    @abrakadabra Oct 15, 2012

    I am not a good programmer, but I googled it up and found out that the Facebook engineering team has put up some content related to their work that explains how push notifications work. For example - You can get some clues here:
    #-Link-Snipped-#

    Also, check an old conversation here - #-Link-Snipped-#
  • The_Small_k

    The_Small_k

    @the-small-k Oct 29, 2012

    Not able to understand how push based approach is used to get the notification automatically.
  • shashidhar.gr

    shashidhar.gr

    @shashidhargr-fKgaMW Jun 26, 2014

    we have two methods to get updated in the front end by the changes that happen in back end. 1)long pooling 2)comet programming.
    Long pooling is where client(browser) send the request to server regularly in some time intervals.(Mostly here time will be in seconds.)so, for each new request using HTTP protocol handshaking has to done with the server, later the processing of our request and finally we get updated in the client side with new/updated data.
    Comet programming is where the client will do handshaking with server when it request data for first time.after that,an persistent connection will be established between client ans server, where client and server can interact with each other without handshaking in further request-response cycle,very fastly . whenever any changes happened in server the client will be updated by sending notification using this persistent connection immedietly by server without waiting for client request.
    For your question, how facebook notification will work internally?, facebook uses "Comet Programming".
    below is the link to some article, please do got through it,
    <a href="https://en.wikipedia.org/wiki/Comet_(programming)" target="_blank" rel="nofollow noopener noreferrer">Comet (Programming)</a>.
  • avii

    avii

    @avii-TGGs8o Jun 27, 2014

    Search for Web Sockets or comets