How to speed retrieving media hosted on S3 Bucket - Umbraco 8
Hello,
does anyone know how to speed retrieving media hosted on S3 bucket? I am using the following package to connect my project with my S3 Bucket and Virtual Path Provider.
https://github.com/DannerrQ/Umbraco-S3-Provider
For those who might face issue, there's a service from S3 called CloudFront will enable you to deliver data out of CloudFront not from S3 Bucket directly which will make the delivery process much faster.
How to speed retrieving media hosted on S3 Bucket - Umbraco 8
Hello,
does anyone know how to speed retrieving media hosted on S3 bucket? I am using the following package to connect my project with my S3 Bucket and Virtual Path Provider. https://github.com/DannerrQ/Umbraco-S3-Provider
Is there any missing aspect should be considered like caching ? for more details, I just added an issue for this: https://github.com/DannerrQ/Umbraco-S3-Provider/issues/3
Please advice
For those who might face issue, there's a service from S3 called CloudFront will enable you to deliver data out of CloudFront not from S3 Bucket directly which will make the delivery process much faster.
CloudFront will generate a new domain URL like this: http://d13ampnph09.cloudfront.net
It should be the value of
<add key="BucketFileSystem:BucketHostname" value="" />
then, any new media will take a new URL with that CloudFront URL.
using this service will cause to lose ImageProcessing features, I don't know if there's any solution for this?
is working on a reply...