-
-
Notifications
You must be signed in to change notification settings - Fork 106
Description
Hey - What is the recommended way of handling bulk updates on the client-side?
Right now, when I issue a bulk patch request (say adding a new tag to a lot of items) - The request gets executed properly but the update responses from the server make things extremely slow on the client.
So typically, I would issue a request which tells the API to add a tag on items with X,Y,Z ids. The API executes the bulk patch and returns the updated objects of X, Y and Z.
After digging around a bit, I see that the updates get processed one by one as the updated objects are received from the API so, from the front-end perspective, there is not much difference in terms of how the bulk patch works vs issuing individual patch requests for all the items. Is there something that is wrong in my setup or is this the expected behavior?
What would be the right way to handle this without freezing the app when you're updating say 100 or more records?
Thanks!