I know this is not exactly a dash question.
Nonetheless most of the time when I read about dash deployment gunicorn is recommended and waitress second if working on a windows machine.
Now I am working on a windows server so I read into waitress but I dont quite understand how to configure properly.
With gunicorn you can tweak performance by tackling concurrency and parallelism with options like:
--workers or --threads or different worker classes
Now how do I handle this in waitress?
The only option I found is “–threads” and thats it. Does that mean that I am limited to handling I/O bound apps?
Is there no other way to handle concurrency problems?