在单个数据库表中存储聊天记录

时间:2013-05-11 16:22:39

标签: php mysql ajax chat

我正在尝试创建一个简单的AJAX / PHP聊天应用程序,以便在网站上的注册用户之间进行通信。它的问题是存储聊天记录。我想将所有聊天消息存储在一个数据库中(包括user1,user2,message,time等列),然后在每个AJAX请求中,搜索数据库以查找用户之间的匹配消息,但我认为这可能非常效率低下。以这种方式实现它是一个好主意,以及处理这个问题的一些好方法是什么?

2 个答案:

答案 0 :(得分:0)

你的方法有什么问题?

在你的桌面上使用正确的MySQL索引(我会在两列user1user2以及订单的时间戳或唯一ID上说明,并且性能足够好。

您可以将curent时间戳添加到AJAX请求,以仅检索之前未加载呼叫的消息。

答案 1 :(得分:0)

由于聊天室必须不断获得更新,我希望将请求降至最低,因此我只是用数据库ID标记每条消息。由于每个用户都可以看到该房间的所有消息,因此请求只是将id发送到服务器以查看是否有任何新帖子。如果有,则返回新帖子并更新页面。

这是我使用的JavaScript:

var csrf = $("input[name='csrf_test_name']").val();
load_messages();
load_users();
$("#submitbutton").click(function(){
    var message = $("#content").val();
    $.post(base_url + "index.php/chat/ajax_post", {
        text: message,
        csrf_test_name: csrf
    });
    $("#content").attr("value", "");
    return false;
});
function load_messages(){
    var last = $('#messagewindow p:last').attr('id');
    $.ajax({
        url: base_url + "index.php/chat/ajax_retrieve",
        type: "POST",
    data: {
        last: last,
        csrf_test_name: csrf
    },
        cache: false,
        success: function(html){
            if(html.substr(1, 1) == 'p'){
                var oldscrollHeight = $("#messagewindow").prop("scrollHeight") - 20;
                var id;
                var tag;
                var user;
                var uid;
                //remove messages that exceed the max - determined on the server side
                $('#messagewindow p:lt(' + $(html).siblings().size() + ')').remove();
                //add messages, emoticons and classes based on whether its the user or someone else
                $(html).find('b').each(function(){
                    if ($(this).html() == user_name + ':'){
                        $('#messagewindow').append($(this).parent().emoticons(base_url + 'images/emoticons').attr('class', 'self'));
                    } else {
                        $('#messagewindow').append($(this).parent().emoticons(base_url + 'images/emoticons').attr('class', 'others'));
                    }
                });
                //scroll screen
                var newscrollHeight = $("#messagewindow").prop("scrollHeight") - 20;
                if(newscrollHeight > oldscrollHeight){
                    $("#messagewindow").animate({ scrollTop: newscrollHeight }, 'normal');
                }
                $(html).find('span').each(function(){
                    id = $(this).attr('id');
                    uid = 'u' + id.substr(1);
                    if (id.substr(0, 1) == 'e' && $('#userwindow p[id="' + uid + '"]').size() < 1){
                        user = $(this).prev().html();
                        tag = "<p id='" + uid + "'>" + user.substr(0, user.length - 1) + "</p>";
                        $('#userwindow').append(tag);
                    } else if(id.substr(0, 1) == 'x') {
                        $('#userwindow p[id="u' + id.substr(1) + '"]').remove();
                    }
                });
            }
        }
    });
}
function load_users(){
    $.ajax({
        url: base_url + "index.php/chat/ajax_users",
        cache: false,
        success: function(html){
            if(html.substr(1, 1) == 'p'){
                $("#userwindow").html(html);
            }
        }
    });
}
setInterval(load_messages, 2000);
setInterval(load_users, 240000);