我正在使用webdis(https://github.com/nicolasff/webdis)我按照网站上的指示运行了webdis,并包含以下用于连接的javascript代码:
var previous_response_length = 0
xhr = new XMLHttpRequest()
xhr.open("GET", "http://localhost:7379/SUBSCRIBE/hello", true);
xhr.onreadystatechange = checkData;
xhr.send(null);
function checkData() {
if(xhr.readyState == 3) {
response = xhr.responseText;
chunk = response.slice(previous_response_length);
previous_response_length = response.length;
console.log(chunk);
}
};
当我打开网页中的连接并打开两个标签时,第二个打开的标签大约需要10秒才能开始订阅和收听发布的消息。无论如何要减少第二个客户端连接的等待时间并使其即时生效?我可以添加什么吗?