Imagine I am implementing a RESTful web service with Servoy which will add customer records to the database. I might want to send in 10 or 20 new customers in a run.
In terms of how Servoy implements these (headless client etc.) is it:
(a) More efficient to send in all 20 at once, i.e. have the web service deserialise and process the 20, but then have to implement some way of informing the caller as to which failed (if any).
(b) More efficient to send them in one at a time, and process the response for each, and let Servoy's pooling and resource management handle the repeated calls.
(c) it doesn't really matter either way in terms of efficiency on the Servoy side.
Thanks