Sobes.tech
Middle+

If the worker is synchronous, will it have batching?

sobes.tech AI

Answer from AI

If the worker is implemented synchronously, batching (processing multiple tasks in one pass) is usually not applied, as a synchronous worker processes tasks sequentially, one after another. Batching involves accumulating multiple requests and processing them together, which is effective in asynchronous or parallel systems. In synchronous mode, each task is processed immediately, without waiting for others, so batching is absent.