书栈网 · BookStack 本次搜索耗时 0.021 秒,为您找到 415 个相关结果.
  • Rooms

    Rooms Joining and leaving Default room Sample use cases Disconnection Sending messages from the outside-world Rooms Within each Namespace , you can define arbitrary channel...
  • 内存占用

    内存占用 每个WebSocket服务器实现的内存使用情况 随时间变化的内存使用情况 内存占用 Socket.IO服务器消耗的资源主要取决于: 连接的客户端的数量 每秒接收和发送的信息(基础emit 、有确认的emit 和广播 )的数量 信息 Socket.IO服务器的内存使用量应与连接的客户端数量成线性关系 。 在这里 可以找到重现本页所...
  • Using multiple nodes

    Using multiple nodes Sticky load balancing Why is sticky-session required Enabling sticky-session NginX configuration Apache HTTPD configuration HAProxy configuration Traefik ...
  • Logging and debugging

    Logging and debugging Available debugging scopes Removing debug from your browser bundle Logging and debugging Socket.IO is now completely instrumented by a minimalistic yet t...
  • 2.2.1 命名空间

    命名空间 默认命名空间 自定义命名空间 命名空间 Socket.io 允许你 “namespace”你的sockets ,这实际上意味着分配不同的端点或路径。 这是一个有用的功能,可以最大限度地减少资源(TCP连接)的数量,同时通过在通信通道之间引入分离来分离应用程序中的问题。 默认命名空间 我们调用默认名称空间/ 它是默认情况下连接到的一个S...
  • 性能优化

    性能优化 通过Socket.IO调节 安装 ws 本机插件 使用另一个 WebSocket 服务器实现 使用自定义解析器 通过系统调节 性能优化 以下是一些提高 Socket.IO 服务器性能的技巧: 通过Socket.IO调节 通过系统调节 You might also be interested in scaling to m...
  • 测试

    测试 mocha 示例 jest 示例 tape 示例 测试 您将在下面找到一些带有常见测试库的代码示例: mocha jest tape mocha 示例 安装:npm i -D mocha chai // with { "type": "module" } in your package.json import { ...
  • How it works

    How it works Engine.IO Transports HTTP long-polling WebSocket Handshake Upgrade mechanism Disconnection detection Socket.IO How it works The bidirectional channel betwee...
  • Handling CORS

    Handling CORS Configuration Troubleshooting Handling CORS Configuration As of Socket.IO v2, the server will automatically add the necessary headers in order to support Cross-...
  • Real-time APIs

    Real-time APIs Using the transport Channels A messages API Using the API What’s next? Real-time APIs In the services chapter we saw that Feathers services automatically s...