服务器时间和客户端时间 - 差异?

时间:2012-08-19 10:03:39

标签: node.js socket.io

我编写了一段代码,告诉我数据包从server to client到达的时间以及从client to server to client再次获得的总时间。这是我的代码。

客户端:

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Ping</title>
<script src="/socket.io/socket.io.js"></script>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script>
$(document).ready(function(e) {

    var socket = io.connect('http://pingme.jit.su:80/', {secure: false});
    $('#button').click(function(e) {
        e.preventDefault();
        $(this).attr('disabled','disabled');
        var time = (new Date()).getTime();
        socket.emit('ping', time);  
    });
    socket.on('pong', function(data)    {
        var time2 = (new Date()).getTime();
        var lat = time2 - data.server;
        var roundtrip = time2 - data.init;
        var str = '<br><br><strong>From Server</strong>: '+lat+' ms<br><strong>Roundtrip</strong>: '+roundtrip+' ms<br><br>';
        $('#res').prepend(str);
        $('#button').removeAttr('disabled');
    }); 
});
</script>
</head>
<body style="margin:0;">
<input type="button" name="Button" id="button" value="Latency">
<div id="res"></div>
</body>
</html>

服务器端:

var app = require('http').createServer(handler)
, io = require('socket.io').listen(app)
, fs = require('fs')
, path = require('path')
, url = require("url")
, querystring = require("querystring");

app.listen(8080);

io.configure('development', function(){
  io.set('transports', ['xhr-polling']);
});

io.configure('production', function(){
  io.set('transports', ['xhr-polling']);
});

var static = require('node-static');
var fileServer = new static.Server('.', { cache: false });

function handler (request, response) {

    var pathname = url.parse(request.url).pathname;
    if(pathname == '/') {
        pathname = '/app.html';
    }   
    request.addListener('end', function () {
        fileServer.serveFile(pathname, 200, {}, request, response, function(err, result)    {
            if(err) {
                console.log(err);
                console.log(err.status);
            }
            else
                console.log(result);                
        });
    });
}

io.sockets.on('connection', function (socket) {
    socket.on('ping',function(data) {
        var time = (new Date()).getTime();
        socket.emit('pong', {server:time, init:data});
    });

});

问题虽然这在本地很好地显示以下输出:

From Server: 4 ms
Roundtrip: 11 ms

From Server: 10 ms
Roundtrip: 15 ms

我在Nodejitsu上部署后运行时得到异常结果。它给了我以下输出:

From Server: 2223 ms
Roundtrip: 956 ms

From Server: 2265 ms
Roundtrip: 915 ms

从整个往返过程中,数据包从服务器传输的时间是多少?我认为这是由于服务器和客户端之间的时间差异。你觉得它是什么?

1 个答案:

答案 0 :(得分:1)

发生这种情况的原因有很多。但如果你想测试你的编程,那么你应该将结果与traceroute(linux上的命令)进行比较。

在本地,事情总是变得更快。当您访问LAN外部的某些内容时,您将获得各种开销和延迟。

一个简单的traceroute可能会解释很多。此外,您可以从这里开始:

http://www.traceroute.org/

// // EDIT

有很多方法可以做到这一点,请点击此链接:

Latency / Ping test from Browser

但是潜在的主要原因是你发送了多条消息。您可以使用您的第一个请求 - 响应消息来计算时间。我与大约1000个客户进行此操作,我所做的是跟踪每个客户的 offest 。一旦计算出偏移量(即客户端比服务器提前1小时),那么您可以从延迟计算中减去它。看看这个php函数

http://php.net/manual/en/function.timezone-offset-get.php

这至少应该帮助您指明正确的方向:) - 如果您需要更多帮助,请告诉我。