File: performance.rst

package info (click to toggle)
python-websockets 15.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,948 kB
  • sloc: python: 25,105; javascript: 350; ansic: 148; makefile: 43
file content (22 lines) | stat: -rw-r--r-- 442 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Performance
===========

.. currentmodule:: websockets

Here are tips to optimize performance.

uvloop
------

You can make a websockets application faster by running it with uvloop_.

(This advice isn't specific to websockets. It applies to any :mod:`asyncio`
application.)

.. _uvloop: https://github.com/MagicStack/uvloop

broadcast
---------

:func:`~asyncio.server.broadcast` is the most efficient way to send a message to
many clients.