You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We currently check if an object exists, and if so, assume it is up to date.
Let's add functionality to update objects. This could be by supported in range of ways 2, not mutually exclusive options are to:
Add support for PUT to replace an object with another version.
Add support for PATCH to update the object in place.
Supporting PATCH is a little more subtle, and updating using it requires diffing the remote and local object, before PATCHING the remote object with the differences. PUT is brute force but will involve more network traffic.
The text was updated successfully, but these errors were encountered:
We currently check if an object exists, and if so, assume it is up to date.
Let's add functionality to update objects. This could be by supported in range of ways 2, not mutually exclusive options are to:
Supporting PATCH is a little more subtle, and updating using it requires diffing the remote and local object, before PATCHING the remote object with the differences. PUT is brute force but will involve more network traffic.
The text was updated successfully, but these errors were encountered: