With gunicorn I can increase thenumber of workers using -w 17
command: gunicorn server.asgi:application --bind 0.0.0.0:8000 -w 17 -k uvicorn.workers.UvicornWorker
How can I do that with daphne to utilize the CPU available?
command: daphne server.asgi:application --port 8000 --bind 0.0.0.0