I have several methods that are independent of each other. These methods call post requests. I’m thinking of calling them parallelly by implementing threading. Can I go with task parallelism? Will it be heavy as the task is I/O bound?

source