You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Support queueing outgoing stanzas and stream management elements for up
to a configurable number of milliseconds (with a configurable queue size
limit). This allows for batching up multiple XML elements into a single
TCP packet in order to reduce the TCP/IP overhead.
The feature is supported by ejabberd_c2s, ejabberd_s2s_out, and
ejabberd_service. It can be enabled by configuring the max. number of
milliseconds to queue an element (default: 0), and optionally the max.
number of elements to queue (default: 10). This can be done by using
the following new ejabberd_c2s/ejabberd_service listener options:
- max_send_queue_size
- max_send_queue_delay
For ejabberd_c2s, the following global options can be specified instead:
- c2s_max_send_queue_size
- c2s_max_send_queue_delay
For ejabberd_s2s_out, the following global options can be specified:
- s2s_max_send_queue_size
- s2s_max_send_queue_delay
0 commit comments