客户端断开连接后的服务器清理

时间:2012-04-21 10:02:50

标签: javascript meteor

有没有办法通过刷新或离开页面来检测客户端何时断开与流星服务器的连接,以便服务器可以尝试进行一些清理?

5 个答案:

答案 0 :(得分:18)

一种技术是实现" keepalive"每个客户经常调用的方法。这假设您在每个客户user_id中都拥有Session

// server code: heartbeat method
Meteor.methods({
  keepalive: function (user_id) {
    if (!Connections.findOne(user_id))
      Connections.insert({user_id: user_id});

    Connections.update(user_id, {$set: {last_seen: (new Date()).getTime()}});
  }
});

// server code: clean up dead clients after 60 seconds
Meteor.setInterval(function () {
  var now = (new Date()).getTime();
  Connections.find({last_seen: {$lt: (now - 60 * 1000)}}).forEach(function (user) {
    // do something here for each idle user
  });
});

// client code: ping heartbeat every 5 seconds
Meteor.setInterval(function () {
  Meteor.call('keepalive', Session.get('user_id'));
}, 5000);

答案 1 :(得分:13)

我认为更好的方法是在发布函数中捕获套接字关闭事件。

Meteor.publish("your_collection", function() {
    this.session.socket.on("close", function() { /*do your thing*/});
}

更新:

较新版本的meteor使用_session:

this._session.socket.on("close", function() { /*do your thing*/});

答案 2 :(得分:2)

我已经实现了一个Meteor智能包,可跟踪来自不同会话的所有连接会话,并检测会话注销和断开事件,而无需昂贵的保持活动。

  

https://github.com/mizzao/meteor-user-status

要检测断开连接/注销事件,您可以执行以下操作:

UserStatus.on "connectionLogout", (info) ->
  console.log(info.userId + " with session " + info.connectionId + " logged out")

你也可以反应性地使用它。看看吧!

编辑: v0.3.0用户状态现在也会跟踪用户空闲状态!

答案 3 :(得分:1)

如果您使用Auth,您可以在方法和发布功能中访问用户ID,则可以在那里实施跟踪。你可以在用户切换房间时设置“最后一次看到”:

Meteor.publish("messages", function(roomId) {
    // assuming ActiveConnections is where you're tracking user connection activity
    ActiveConnections.update({ userId: this.userId() }, {
        $set:{ lastSeen: new Date().getTime() }
    });
    return Messages.find({ roomId: roomId});
});

答案 4 :(得分:-1)

我正在使用Iron Router并在我的主控制器的unload事件上调用我的清理代码。当然,这不会发现标签关闭的事件,但对于许多用例仍然感觉良好

ApplicationController = RouteController.extend({
    layoutTemplate: 'root',
    data: {},
    fastRender: true,
    onBeforeAction: function () {
        this.next();
    },
    unload: function () {
        if(Meteor.userId())
            Meteor.call('CleanUpTheUsersTrash');
    },
    action: function () {
        console.log('this should be overridden by our actual controllers!');
    }
});