I've written a mobile application that needs to make a call to the Camunda rest api and get every task and process instance variable when it wakes up.
Call process-instance with no params
For each process instance returned call task?processInstanceId=$processInstanceDetails.id
For each process instance returned call process-instance/$processInstanceDetails.id/variables
With about 80 live process instances alive in the system it is starting to get quite slow (15 seconds).
Can anyone advise me on any possible improvements (besides getting the mobile to only query certain process instance id's which I don't want to look at yet).
thanks