Hangfire仪表板更改刷新周期
Hangfire dashboard change refresh period
Hangfire dashboard
向服务器发送ajax请求刷新数据:
它发送统计请求,如图所示。每次它向数据库发出请求。可以在配置中或以其他方式更改请求数吗?因为现在是经常。
您可以在仪表板选项中更改轮询间隔,设置以毫秒为单位。参考 this
app.UseHangfireDashboard("/hangfire", new DashboardOptions
{
StatsPollingInterval = 60000
});
Hangfire dashboard
向服务器发送ajax请求刷新数据:
它发送统计请求,如图所示。每次它向数据库发出请求。可以在配置中或以其他方式更改请求数吗?因为现在是经常。
您可以在仪表板选项中更改轮询间隔,设置以毫秒为单位。参考 this
app.UseHangfireDashboard("/hangfire", new DashboardOptions
{
StatsPollingInterval = 60000
});