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
In previous version of the AWS SDK v2 it was not possible to use a single request to put an object if the key did not exist.
With version 2.28+ you can use PutObjectRequest.html#ifNoneMatch which would return a non 200 status code when there is an existing key.
If this works out it would improve the performance of the library as it would not be doing:
Head request to check if the object exists
Put request to actually add the object
Instead we'll be doing just one PUT request and handle the status code.
Tasks
The following tasks will need to be carried out:
Research how this works.
Investigate what internal changes will be required.
Task Description
In previous version of the AWS SDK v2 it was not possible to use a single request to put an object if the key did not exist.
With version 2.28+ you can use PutObjectRequest.html#ifNoneMatch which would return a non 200 status code when there is an existing key.
If this works out it would improve the performance of the library as it would not be doing:
Instead we'll be doing just one
PUT
request and handle thestatus code
.Tasks
The following tasks will need to be carried out:
Task Relationships
This task:
Useful Links
Help
The text was updated successfully, but these errors were encountered: