I am intending to host my bot – built using python-telegram-bot – on a server. I was wondering if multiple users are interacting with my bot, will their requests be queued, or processed concurrently? And if so, do I need to do anything to the code on my end to ensure that they’ll be processed concurrently?
I’m not exactly familiar with how it works as I’m hosting it locally right now, and when I tested it out with 2 accounts, it seemed to me that the requested were processed sequentially.
Any help will be much appreciated!