Concurrency and parallel processing are two different things.
I know that FastAPI supports concurrency. It can handle multiple API requests concurrently using async and await.
What I want to know is, if FastAPI also supports Multiprocessing and Parallel processing of requests or not? If yes then how can I implement parallel processing of requests?
I have searched a lot but everywhere I found about concurrency only. I am new to FastAPI.