Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
由于负载均衡器的会话容量机架。
我不想对 Socket.io 使用任何长轮询。
有谁知道如何使用 Socket.io 缩短和频繁轮询?
或其他解决方案?
进行短线投票。您可以将 Socket.IO 的轮询持续时间设置为较小的值,例如一秒或零。
io.set('polling duration', 1);
HTTP 轮询的默认值为 20 秒。将轮询持续时间设置为一秒可以有效地模拟短轮询。