Task Queue Vs executeInBackground JA

0
Hello Experts,   Is there any difference between a Task Queue and executeInBackground JA, Also what is the effect in increasing threads in Task Queue.  
asked
1 answers
1

tasks are executed in parallel. So you can manage how much load you put on your server/cluster by the amount of threads.
 

The API function executeInBackground puts a task into the specified task queue.

answered