Browse Source

Fixed broken gevent URL in documentation (#1427)

pull/1430/head
Carlos Guerrero 3 months ago
committed by GitHub
parent
commit
8964dab9d5
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 2
      docs/intro.rst
  2. 2
      docs/server.rst

2
docs/intro.rst

@ -189,7 +189,7 @@ Server Features
- Can be hosted on any `WSGI <https://wsgi.readthedocs.io/en/latest/index.html>`_ or
`ASGI <https://asgi.readthedocs.io/en/latest/>`_ web server including
`Gunicorn <https://gunicorn.org/>`_, `Uvicorn <https://github.com/encode/uvicorn>`_,
`eventlet <http://eventlet.net/>`_ and `gevent <http://gevent.org>`_.
`eventlet <http://eventlet.net/>`_ and `gevent <http://www.gevent.org>`_.
- Can be integrated with WSGI applications written in frameworks such as Flask, Django,
etc.
- Can be integrated with `aiohttp <http://aiohttp.readthedocs.io/>`_,

2
docs/server.rst

@ -838,7 +838,7 @@ Gevent
When a multi-threaded web server is unable to satisfy the concurrency and
scalability requirements of the application, an option to try is
`Gevent <http://gevent.org>`_. Gevent is a coroutine-based concurrency library
`Gevent <http://www.gevent.org>`_. Gevent is a coroutine-based concurrency library
based on greenlets, which are significantly lighter than threads.
Instances of class ``socketio.Server`` will automatically use Gevent if the

Loading…
Cancel
Save