django-storages
django-storages copied to clipboard
S3Boto3Storage still uses list_objects instead of list_objects_v2 in listdir()
Version 1.7.1 reversed use of list_objects_v2
for backwards compatibility as a transition period. It was 2018.
Could django-storages
move to list_objects_v2
in 2022 or at least have it as an option behind a setting? Is there something preventing it?
Are there even any real benefits to it? I could not find any performance tests between the two, only more features are mentioned and easier pagination.
Same question here. boto3 docs suggests to use the revised list_objects_v2
function
The reason this was is used is that many providers implement the S3 protocol and they do not uniformly implement the v2.
Fair enough that it should be used where possible.