I am new to Python, so maybe this is a easy question, but I am planning to do an REST API application but I need it to be very fast and allow concurrent queries. Is there a way to do a application Python that allows concurrent execution and each execution responds to an REST API?
I don't know if threads are a way to go in this case? I know threading is not the same as concurrency, but maybe are a solution for this case.