1

我正在为我的 rails 应用程序使用 AmazonRDS 和相关的 AWS 流程。我希望推出一个 android 应用程序,但 Android AWS SDK 仅说明支持用于 SimpleDB 和 DynamoDB。

AirBnb 展示了一个案例:http ://aws.amazon.com/solutions/case-studies/airbnb/ 在使用 AWS 时,他们还拥有强大的 android 和 ios 应用程序。

有没有办法使用 AmazonRDS 作为 Android 和 ios 的后端?或者像 AirBnb 那样允许这种情况的 AWS 配置?

4

1 回答 1

1

You are missing a piece of the puzzle. You would not connect directly from your mobile apps to the data stores, instead you would connect through an API you build using a platform or language of your choice.

Through your API, you could connect to any type of datastore, whether be Amazon RDS (Which is just MySQL, SQL Server or Oracle anyway) SimpleDB, DynamoDB, Riak, Mongo or any other store you feel best fits your application.

于 2013-11-03T18:37:00.453 回答