Long polling - Message system

前端 未结 4 861
夕颜
夕颜 2021-02-02 01:06

I\'m looking into doing some long polling with jQuery and PHP for a message system. I\'m curious to know the best/most efficient way to achieve this. I\'m basing is off this Sim

相关标签:
4条回答
  • 2021-02-02 01:24

    Yes the way that you describe it is how the Long Polling Method is working generally. Your sample code is a little vague, so i would like to add that you should do a sleep() for a small amount of time inside the while loop and each time compare the last_checked time (which is stored on server side) and the current time (which is what is sent from the client's side).

    Something like this:

    $current = isset($_GET['timestamp']) ? $_GET['timestamp'] : 0;
    $last_checked = getLastCheckedTime(); //returns the last time db accessed
    
    while( $last_checked <= $current) {
        usleep(100000);
        $last_checked = getLastCheckedTime();
    }
    
    $response = array();
    $response['latestData'] = getLatestData() //fetches all the data you want based on time
    $response['timestamp'] = $last_checked;
    echo json_encode($response);    
    

    And at your client's side JS you would have this:

    function longPolling(){
            $.ajax({
              type : 'Get',
              url  : 'data.php?timestamp=' + timestamp,
              async : true,
              cache : false,
    
              success : function(data) {
                    var jsonData = eval('(' + data + ')');
                    //do something with the data, eg display them
                    timestamp  = jsonData['timestamp'];
                    setTimeout('longPolling()', 1000);
              },
              error : function(XMLHttpRequest, textstatus, error) { 
                        alert(error);
                        setTimeout('longPolling()', 15000);
              }     
           });
    }
    
    0 讨论(0)
  • 2021-02-02 01:29

    If you only have one user, that's fine. If you don't, you'll run into complications. You'll also run one hell of a lot of SELECT queries by doing this.

    I've been firmly convinced for a while that PHP and long polling just do not work natively due to PHP not having any cross-client event-driven possibilities. This means you'll need to check your database every second/2s/5s instead of relying on events.

    If you still want to do this, however, I would make your messaging system write a file [nameofuser].txt in a directory whenever the user has a message, and check for message existence using this trigger. If the file exists and is not empty, fire off the request to get the message, process, feed back and then delete the text file. This will reduce your SQL overhead, while (if you're not careful) increasing your disk IO.

    Structure-wise, an associative table is by far the best. Make a new table dedicated to checking the status, with three columns: user_id message_id read_at. The usage should be obvious. Any combination not in there is unread.

    0 讨论(0)
  • 2021-02-02 01:33

    Instead of adding new column as last_checked you can add as last_checked_time. So that you can get the data from last_checked_time to the current_time.

    (i.e) DATA BETWEEN  `last_checked_time` AND `current_time`
    
    0 讨论(0)
  • 2021-02-02 01:48

    Instead of creating a column named last_checked, you could create a column called: checked. If you save all messages in the database, you could update the field in the database. Example:

    1. User 1 sends User 2 a message.
    2. PHP receives the message using the long-polling system and saves the message in a table.
    3. User 2, when online, would send a signal to the server, notifying the server that User 1 is ready to receive messages
    4. The server checks the table for all messages that are not 'checked' and returns them.
    0 讨论(0)
提交回复
热议问题