Amazon S3:如何同时使用/加载 mp3 文件

发布于 2024-10-17 03:39:58 字数 425 浏览 5 评论 0原文

我正在使用 Amazon S3 存储一些 mp3 文件。 我的 Web 应用程序使用 Soundmanager2 javascript 库从 Amazon 存储桶加载文件,并向用户播放它们。

当第一个用户单击 mp3 时,声音管理器开始播放该文件,并按预期缓存正在播放的歌曲的其余部分。 问题是,如果第二个用户点击同一个 mp3,他必须等到第一个用户缓存整首歌曲,这对我的网站来说是不可接受的。

据我所知,Amazon S3 以某种方式将文件专门“流式传输”到第一个请求。有没有办法能够同时使用该文件,即用户能够同时播放相同的mp3?

另外,CloudFront 功能可以解决这个问题吗?

感谢您的帮助! Alex

(顺便说一句,我的应用程序是基于 Ruby on Rails 3 构建的,并托管在 Heroku 上)

I'm using Amazon S3 to store some mp3 files.
My web application, uses the Soundmanager2 javascript library to load the files from the Amazon bucket, and play them to users.

When the first user clicks on an mp3, soundmanager starts playing the file, and as intended, caches the rest of the song as it is being played.
Problem is, if a second user clicks on the same mp3, he must wait until the first user caches the whole song, which is unacceptable for my website.

I understand that Amazon S3 somehow 'streams' the file exclusively to the first request. Is there a way to be able to use that file simultaneously, i.e. users be able to play the same mp3's at the same time?

Also, would the CloudFront functionality solve this issue?

Thank you for your help!
Alex

(By the way, my application is built on Ruby on Rails 3, and hosted on Heroku)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

那一片橙海, 2024-10-24 03:39:58

S3 中不存在限制同时下载单个对象的限制。

我建议您使用 Charles 之类的工具来检查 HTTP 请求并查看是否有其他服务导致第二个客户要求延迟。

There is no limitation in S3 that restricts simultaneous downloads of a single object.

I would suggest that you use a tool, like Charles, to inspect the HTTP requests and see if another service is causing the second client's request to be delayed.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文