向我的应用程序的数百万用户分发数百张图像的最佳服务器端解决方案是什么?

What is the best server side solution to distribute hundreds of images to millions of users of my app?

我有一个拥有数百万用户的免费照片应用程序,它有贴纸和相框,我想从服务器分发它们以精简 apk 并为用户提供更多选择。我在 android 方面非常有经验,但我不知道什么是服务器端的最佳解决方案。我应该购买托管解决方案并将所有图像放在那里还是使用亚马逊服务,或者...?

Amazon S3 是存储大量数据的理想选择

Amazon S3 is easy to use, with a simple web service interface to store and retrieve any amount of data from anywhere on the web.

看看这里 https://aws.amazon.com/s3/getting-started/

您仍然需要通过您选择的 SDK 和编程语言与 S3 交互,java、.net、python、php。

然后您可以 运行 在 EC2 上的 AWS 中使用其中一个应用程序。 https://aws.amazon.com/ec2/

希望这能回答您的问题。