does anyone know how to speed up processing of Asy...
# suitetalkapi
n
does anyone know how to speed up processing of Async SOAP calls? @battk Slack Conversation
seems like the async calls process 1 by 1 and not concurrently for some reason
b
no, its one at a time
you are supposed to use it when you dont actually care about processing quickly
n
hmm well that's not good
how can we speed up processing of integrations then?
just process one by one? we are using workato which uses SOAP
we also have a suitecloud+ license
b
use the synchronous versions of whatever operations you are doing
and hope that workato supports making concurrent requests
n
for synchronous can you bulk process as well? i would assume yes
b
n
@battk how do you normally do concurrent requests?
b
thats very programming language specific
but usually some variation of a queue with multiple consumers of the queue, one for each concurrent request you allow
👍 1