I am using Django-Storages for file upload to Amazon S3 but the upload speed is very slow.
Is there any way I can get nice upload speed ?
I am using
Django == 1.4
Django-storages == 1.1.8
boto == 2.6.0
Django settings:
DEFAULT_FILE_STORAGE = 'storages.backends.s3boto.S3BotoStorage'
AWS_ACCESS_KEY_ID = 'XXXXXXXXX'
AWS_SECRET_ACCESS_KEY = 'XXXXXXX'
AWS_STORAGE_BUCKET_NAME = 'XXXdev'
AWS_QUERYSTRING_AUTH = False