我在IIS中托管了简单的SignalR应用程序。当IIS为8时,Win服务器2012R2 IE11通过WebSocket连接,一切正常。但是,当我在IIS 7.5或IIsExpress 8上托管时,IE11与forewerFrame连接,10分钟后,IE消耗的内存翻了一倍。
这是我的代码 SignalR配置
public static void Configuration(IAppBuilder app)
{
app.MapSignalR(new HubConfiguration
{
EnableDetailedErrors = true,
EnableJavaScriptProxies = true
});
}
集线器
[HubName("testHub")]
public class TestHub : Hub
{
[HubMethodName("update")]
public void Update()
{
Clients.All.update(new TestData
{
Name = "Test1",
Date = DateTime.Now,
Value1 = 100,
Value2 = 200,
Value3 = 300,
Value4 = 400,
Value5 = 500,
Value6 = 600,
Value7 = 700,
Value8 = 800,
Value9 = 900,
});
}
}
public class TestData
{
public string Name { get; set; }
public DateTime Date { get; set; }
public int Value1 { get; set; }
public int Value2 { get; set; }
public int Value3 { get; set; }
public int Value4 { get; set; }
public int Value5 { get; set; }
public int Value6 { get; set; }
public int Value7 { get; set; }
public int Value8 { get; set; }
public int Value9 { get; set; }
}
查看
<h3>Homepage</h3>
@section scripts
{
@Scripts.Render("~/bundles/signalR")
<script type="text/javascript" src="@Url.Content("~/signalr/hubs")"></script>
<script>
$(function () {
$.connection.testHub.on('update', function (item) { update(item); });
$.connection.hub.start().done(function() {
setInterval(function() { $.connection.testHub.server.update(); }, 100);
});
});
var count = 0;
function update(item) {
count++;
$('#count').val(count);
}
</script>
}
<span> count:<input type="text" id="count" value="0" /></span>
有人知道出了什么问题吗?我更新了所有的nugets。 jQuery 2.1.3,SignalR 2.2.0
由于
答案 0 :(得分:3)
这是IE中Forever Frame的一个已知问题:https://github.com/SignalR/SignalR/issues/809
尝试强制进行长时间轮询。
相应地更改您的代码:
$.connection.hub.start({ transport: 'longPolling' }).done(function() {
setInterval(function() { $.connection.testHub.server.update(); }, 100);
});