Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个私人存储桶,为客户存储全尺寸图像,所有缩略图和较小尺寸都在网络服务器上。当用户想要下载多个图像时,我想压缩上述图像,然后将它们作为一个文件交付给用户。
目前,我能想到发生这种情况的唯一方法是将文件从 S3 传输到 Web 服务器,压缩,然后向下传输到最终用户。
似乎可以或应该有更好的方法来解决这个问题。有什么想法或建议吗?
有一个 EC2 实例来执行此操作。EC2 和 S3 之间的流量是免费的(作为内部流量,速度更快),因此您不会像使用外部服务器那样为双倍的带宽付费。
显然,有一些 Actionscript 库允许在客户端发生这种情况,例如 Fzip ...您是否已经找到解决方案?